cbanor / X-Website

Multilingual translation and error feedback and fixes
13 stars 0 forks source link

密钥输入长度限制问题 #11

Closed Alexzzzzzz1 closed 1 year ago

Alexzzzzzz1 commented 1 year ago

在https://the-x.cn/cryptography/Aes.aspx的密码一栏粘贴比如123456789123456789,实际上在输入框被截断成了1234567891234567,如果是字母,不只会截断,而且可能修改

cbanor commented 1 year ago

此处密钥长度是被强行截断的。其原因是你输入的密钥超过了算法要求的密钥长度。AES密码长度与bits相关。

Alexzzzzzz1 commented 1 year ago

好的好的