标签: 3DES加密解密

1 篇文章

3DES加密解密—php代码
3DES加密—php代码 class TripleDesEcb{ /**加密 * @param $text string 文本内容 * @param $key string 秘钥 max 24 * @return string */ public function encrypt($text,$key) { $iv = mcrypt_create_iv(mcrypt_get_iv_size(MCR…