Null character in encrypted data

懵懂的女人 提交于 2019-11-29 14:55:13

Is it possible that after cbc encryption, null character appears in the resulting multibyte data.

Absolutely. It would not be a pseudo-random function if values like 0's were missing.

If yes, what precaution should I take to avoid it.

Treat everything as a byte array with embedded NULLs. Never treat it like a char*.

If you want to treat it like a char*, then you will need to encode it first. Try hexadecimal, Base32 or Base64.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!