+
95
-

mcrypt_encrypt(): Key of size 6 not supported by this algorithm

php

用mcrypt_encrypt加密提示这个错误

mcrypt_encrypt(): Key of size 6 not supported by this algorithm,Only keys of sizes 8 supported!怎么办


网友回复

+
15
-

这个错误的意思是加密的key长度应该为8,而不是6,在php5.4低版本中,可能为自动填充\0,但是php5.5之后要求严格,需要自己把秘钥的长度固定

我知道答案,我要回答