> From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of
> Eudald Sabaté Creixell
> Sent: Wednesday, April 12, 2017 10:43
> First of all I'm new to OpenSSL and EVP functions. I've been using them in a
> project in order to encrypt/decrypt files
> using 256-bit AES in CBC mo
You need to learn what CBC mode is. Block ‘n’ feeds into block ‘n+1’ The
behavior you describe is not wrong.
Blocks are padded, so only read outlen bytes.
--
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
Hey,
First of all I'm new to OpenSSL and EVP functions. I've been using them in
a project in order to encrypt/decrypt files using 256-bit AES in CBC mode,
and using these functions to entirely encrypt/decrypt a file I've found any
problem. Now, I've been asked to decrypt a file partially, and the