Heim > php教程 > PHP源码 > Hauptteil

AES CBC

PHP中文网
Freigeben: 2016-05-23 16:36:44
Original
988 Leute haben es durchsucht

php代码

class AES_CBC_NoPadding
{
	private $iv;
	private $key;
	private $blocksize;
	
	public function __construct($key, $iv)
	{
		$this->blocksize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
		$this->key = substr(md5($key), 0, $this->blocksize);
		$this->iv = substr(md5($iv), 0, $this->blocksize);
	}
	
	public function encrypt($text)
	{
		$pad = $this->blocksize - strlen($text)%$this->blocksize;
		$text = str_pad($text, strlen($text) + $pad, "\0");
		return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $this->key, $text, MCRYPT_MODE_CBC, $this->iv));
	}
	
	public function decrypt($text)
	{
		$text = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $this->key, base64_decode($text), MCRYPT_MODE_CBC, $this->iv);
		$len = strlen($text);
		for($len--; $len >= 0; $len--)
		{
			if($text[$len] !== "\0")
			{
				$len++;
				break;
			}
		}
		return substr($text, 0, $len);
	}
	
}

class AES_CBC_PKCS7Padding
{
	private $iv;
	private $key;
	private $blocksize;
	
	public function __construct($key, $iv)
	{
		$this->blocksize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);
		$this->key = substr(md5($key), 0, $this->blocksize);
		$this->iv = substr(md5($iv), 0, $this->blocksize);
	}
	
	public function encrypt($text)
	{
		$pad = $this->blocksize - strlen($text)%$this->blocksize;
		$text = str_pad($text, strlen($text) + $pad, chr($pad));
		return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $this->key, $text, MCRYPT_MODE_CBC, $this->iv));
	}
	
	public function decrypt($text)
	{
		$text = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $this->key, base64_decode($text), MCRYPT_MODE_CBC, $this->iv);
		$pad = ord(substr($text, -1));
		if($pad < 1 || $pad > 32) {
			$pad = 0;
		}
		return substr($text, 0, strlen($text) - $pad);
	}
	
}
Nach dem Login kopieren
Verwandte Etiketten:
aes
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!