forked from eafun/php-java-aes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAes.php
54 lines (48 loc) · 1.43 KB
/
Aes.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
class Aes
{
public $cipher = "AES-128-ECB";
/**
* @param $encrypt string 待加密的数据
* @param $key string 密钥
* @return string
*/
public function encrypt($encrypt, $key)
{
$iv = $this->getIv();
$key = substr(openssl_digest(openssl_digest($key, 'sha1', true), 'sha1', true), 0, 16);
$encrypted = openssl_encrypt($encrypt, $this->cipher, $key, OPENSSL_RAW_DATA, $iv);
return strtoupper(bin2hex($encrypted));
}
/**
* @param $decrypt string 待解密的数据
* @param $key string 密钥
* @return string
*/
public function decrypt($decrypt, $key)
{
$decoded = $this->hex2bin($decrypt);
$iv = $this->getIv();
$key = substr(openssl_digest(openssl_digest($key, 'sha1', true), 'sha1', true), 0, 16);
return openssl_decrypt($decoded, $this->cipher, $key, OPENSSL_RAW_DATA, $iv);
}
public function getIv()
{
$ivlen = openssl_cipher_iv_length($this->cipher);
return openssl_random_pseudo_bytes($ivlen);
}
/**
* 16进制转换为2进制
* @param $str string
* @return string
*/
public function hex2bin($str)
{
$sbin = "";
$len = strlen($str);
for ($i = 0; $i < $len; $i += 2) {
$sbin .= pack("H*", substr($str, $i, 2));
}
return $sbin;
}
}