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 null
s. never treat char*
.
if want treat char*
, need encode first. try hexadecimal, base32 or base64.
Comments
Post a Comment