c++ - null character in encrypted data (openssl) -


is possible after cbc encryption, null character appears in resulting multibyte data. if yes, precaution should take avoid it.

is possible after cbc encryption, null character appears in resulting multibyte data.

absolutely. not pseudo-random function if values 0's missing.

if yes, precaution should take avoid it.

treat byte array embedded nulls. never treat char*.

if want treat char*, need encode first. try hexadecimal, base32 or base64.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -