Anyone have any ideas? Still haven't found a solution.
--
View this message in context:
http://openssl.6102.n7.nabble.com/Problem-reading-public-key-from-PEM-tp42657p42794.html
Sent from the OpenSSL - User mailing list archive at Nabble.com.
The problem is that aes_cbc is a block cipher and works on 16-byte blocks,
typically. By default, any data block that is less than this size is
padded, as is the case for you. Since you're only sending in 10 bytes, your
10 bytes are being padded with zeros to make the block 16 bytes.
So, to answ