I am using the CCCrypt
method.
Can I use a longer key than than 128bit? Can it be arbitrarily long? Or perhaps multiples of 128?
If so how would I do this?
I didn't think this woas possible but I found this text: here
Some algorithms such as AES and RSA allow for keys of different lengths, but others are fixed, such as DES and 3DES. Encryption using a longer key generally implies a stronger resistance to message recovery. As usual, there is a trade off between security and time, so choose the key length appropriately.
How does AES allow for different lengths, does it ignore the bits higher than 128?
I'm pulling my hair out over this.