Klasse aes {
<code>const KEY = "625202f9149e061d"; const IV = "5efd3f6060e20330"; /**</code>
pkcs7-Ergänzung
@param string $string Klartext
@param int $blocksize Blockgröße, in Byte
@return String
*/
Funktion addPkcs7Padding($string, $blocksize = 32) {
<code> $len = strlen($string); //取得字符串长度 $pad = $blocksize - ($len % $blocksize); //取得补码的长度 $string .= str_repeat(chr($pad), $pad); //用ASCII码为补码长度的字符, 补足最后一段 return $string;</code>
}
aes128cbcEncrypt($str, $iv = self::IV, $key = self::KEY) { // $this->addPkcs7Padding($str,16)
<code> $base = (mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $this->addPkcs7Padding($str, 16), MCRYPT_MODE_CBC, $iv)); return $this->strToHex($base);</code>
}
strToHex($string) {//Zeichenfolge in Hexadezimalzahl umwandeln
<code> $hex = ""; $tmp = ""; for ($i = 0; $i < strlen($string); $i++) { $tmp = dechex(ord($string[$i])); $hex.= strlen($tmp) == 1 ? "0" . $tmp : $tmp; } $hex = strtoupper($hex); return $hex;</code>
}
Der AES-Verschlüsselungscode, den ich im Internet gefunden habe, enthält PHP und Android. Eine freundliche Person kam und sagte mir: $aes = new aes(); Schritt oder Hilfe beim Schreiben einer entsprechenden js-Version = =
Klasse aes {
<code>const KEY = "625202f9149e061d"; const IV = "5efd3f6060e20330"; /**</code>
pkcs7-Ergänzung
@param string $string Klartext
@param int $blocksize Blockgröße, in Byte
@return String
*/
Funktion addPkcs7Padding($string, $blocksize = 32) {
<code> $len = strlen($string); //取得字符串长度 $pad = $blocksize - ($len % $blocksize); //取得补码的长度 $string .= str_repeat(chr($pad), $pad); //用ASCII码为补码长度的字符, 补足最后一段 return $string;</code>
}
aes128cbcEncrypt($str, $iv = self::IV, $key = self::KEY) { // $this->addPkcs7Padding($str,16)
<code> $base = (mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $this->addPkcs7Padding($str, 16), MCRYPT_MODE_CBC, $iv)); return $this->strToHex($base);</code>
}
strToHex($string) {//String in Hexadezimal umwandeln
<code> $hex = ""; $tmp = ""; for ($i = 0; $i < strlen($string); $i++) { $tmp = dechex(ord($string[$i])); $hex.= strlen($tmp) == 1 ? "0" . $tmp : $tmp; } $hex = strtoupper($hex); return $hex;</code>
}
Der AES-Verschlüsselungscode, den ich im Internet gefunden habe, enthält PHP und Android. Eine freundliche Person kam und sagte mir: $aes = new aes(); Schritt oder Hilfe beim Schreiben einer entsprechenden js-Version = =
Es ist ziemlich kompliziert zu sagen, schauen Sie sich diesen Link an.
http://yinghuayuan8866.blog.163.com/blog/static/2245702720121225658625/