在php中,mcrypt_decrypt()函数用于使用给定参数解密密文,语法“mcrypt_decrypt($cipher,$key,$data,$mode,$iv)”;参数“$key”是数据加密密钥,“$data”是使用给定的“$cipher”和“$mode”解密的数据。
本教程操作环境:windows7系统、PHP8版、DELL G3电脑
php mcrypt_decrypt()函数
mcrypt_decrypt — 使用给定参数解密密文,语法格式:
mcrypt_decrypt( string $cipher, string $key, string $data, string $mode, string $iv = ? ): string|false
登录后复制
可以解密 data 并返回明文。
参数:
-
cipher
MCRYPT_ciphername 常量中的一个,或者是字符串值的算法名称。
-
key
数据加密密钥。 如果密钥长度不是加解密算法能够支持的有效长度, 那么会产生警告并且返回 false
-
data
要使用给定的 cipher 和 mode 解密的数据。 如果数据大小不是 n * 分组大小,则在其后追加 '