摘要: class CryptAES{ protected $cipher = MCRYPT_RIJNDAEL_128; protected $mode = MCRYPT_MODE_ECB; protected $pad_method = NULL; protected $secret_key = ''; protected $iv = ''; public function set_cipher($cipher){ $this->cipher = $cipher; } public function set_mode($mode){ ... 阅读全文
posted @ 2014-03-15 15:41 __aim 阅读(1606) 评论(0) 推荐(0)