Re: AES128 CBC

2010-07-20 Thread Rudy1
finalize with EncryptFinal and move on to the next step in your code. By your codes description, and my example, each is only needed once since all the data is already there. That make sense? Anthony On Jul 16, 2010, at 3:10 AM, Rudy1 wrote: Hello Anthony, thank you for you fast reply

Re: AES128 CBC

2010-07-16 Thread Rudy1
EVP_EncryptUpdate_ex() the variable out_len = 288. Do I have to call EVP_EncryptUpdate_ex() again to encrypt the remaining 4 bytes? I thought the remaining bytes will be encrypted by calling EVP_EncryptFinal_ex() Rudy1 Anthony Gabrielson-4 wrote: Hello, This seems to be a pretty typical question

AES128 CBC

2010-07-15 Thread Rudy1
encrypt the whole string correctly? Or do I have to call EVP_EncryptUpdate () for every blocksize chunk of my string? How large is the encrypted string? I would expect 304 bytes (288 + 16). Is this correct? Rudy1 -- View this message in context: http://old.nabble.com/AES128-CBC