Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 openssl 在使用 AES-128-CBC 时如何处理可被 8 个字节整除的消息。openssl 如何检测到没有要删除的填充(PKCS#5/PKCS#7)?尤其是当消息以 ASCII 码小于或等于 8 的字符结尾时。
我希望我的问题很清楚。谢谢
答案是总是添加填充,即使数据可以除以块大小。因此,一个 8 字节的字符串将被填充 8 个字节(ASCII 码为 8)。