mcrypt_cfb
mcrypt_cfb
(PHP 4, PHP 5)
mcrypt_cfb — 以CFB模式加密/解密数据
警告
这个函数在PHP 5.5.0中是DEPRECATED
,而在PHP 7.0.0中是REMOVED
。
这个功能的替代方案包括:
- mcrypt_decrypt()
- mcrypt_encrypt()
描述
string mcrypt_cfb ( int $cipher , string $key , string $data , int $mode , string $iv )
string mcrypt_cfb ( string $cipher , string $key , string $data , int $mode [, string $iv ] )
第一个原型与libmcrypt 2.2.x链接,第二个与libmcrypt 2.4.x或更高版本链接。本mode
应该是MCRYPT_ENCRYPT
或MCRYPT_DECRYPT
。
← mcrypt_cbc
mcrypt_create_iv →