> php教程 > PHP源码 > 본문

PHP blowfish 加密解密函数

WBOY
풀어 주다: 2016-07-06 13:28:26
원래의
1649명이 탐색했습니다.
跳至 [1] [全屏预览]
<?php

/**
 * php blowfish 算法
 * Class blowfish
 */
class blowfish{
	/**
	 * blowfish + cbc模式 + pkcs5补码  加密
	 * @param string $str 需要加密的数据
	 * @return string 加密后base64加密的数据
	 */
	public function blowfish_cbc_pkcs5_encrypt($str)
	{
		$cipher = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_CBC, '');

		//pkcs5补码
		$size = mcrypt_get_block_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CBC);
		$str = $this->pkcs5_pad($str, $size);

		if (mcrypt_generic_init($cipher, $this->key, $this->iv) != -1)
        {
           $cipherText = mcrypt_generic($cipher, $str);
           mcrypt_generic_deinit($cipher);

           return base64_encode($cipherText);
        }

        mcrypt_module_close($cipher);
	}

	/**
	 * blowfish + cbc模式 + pkcs5  解密 去补码
	 * @param string $str 加密的数据
	 * @return string 解密的数据
	 */
	public function blowfish_cbc_pkcs5_decrypt($str)
	{
		$cipher = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_CBC, '');

		if (mcrypt_generic_init($cipher, $this->key, $this->iv) != -1)
        {
           $cipherText = mdecrypt_generic($cipher, base64_decode($str));
           mcrypt_generic_deinit($cipher);

           return $this->pkcs5_unpad($cipherText);
        }

		mcrypt_module_close($cipher);
	}

	private function pkcs5_pad($text, $blocksize){
		$pad = $blocksize - (strlen ( $text ) % $blocksize);
		return $text . str_repeat ( chr ( $pad ), $pad );
	}

	private function pkcs5_unpad($str){
		$pad = ord($str[($len = strlen($str)) - 1]);
		return substr($str, 0, strlen($str) - $pad);
	}
}
로그인 후 복사
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿