91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

api接口數據怎么加密

九三
457
2021-03-05 12:48:22
欄目: 網絡安全

api接口數據怎么加密

使用AES加密算法對api接口數據進行加密,具體方法如下:

//$key previously generated safely, ie: openssl_random_pseudo_bytes

$key='123456789';

$plaintext="hello world";

//$cipher = "aes-128-cbc";

$cipher = "AES-128-ECB";

if (in_array($cipher, openssl_get_cipher_methods()))

{

// $iv='1111111111111111';

$iv='';

$ciphertext = openssl_encrypt($plaintext, $cipher, $key, OPENSSL_RAW_DATA, $iv);

$ciphertext =base64_encode($ciphertext);

//store $cipher, $iv, and $tag for decryption later

$original_plaintext = openssl_decrypt(base64_decode($ciphertext), $cipher, $key, OPENSSL_RAW_DATA, $iv);

var_dump( $original_plaintext);

var_dump( $ciphertext);

}

0
安新县| 彩票| 高要市| 大庆市| 镇巴县| 资阳市| 合肥市| 扎赉特旗| 大洼县| 四会市| 宝鸡市| 深州市| 北海市| 彭水| 海安县| 抚州市| 琼海市| 潮州市| 永德县| 赫章县| 甘孜县| 固始县| 彭山县| 河池市| 蕲春县| 湘乡市| 将乐县| 利津县| 灵石县| 仁寿县| 洞头县| 玛多县| 从化市| 乳源| 资中县| 额尔古纳市| 安西县| 靖安县| 元谋县| 土默特左旗| 清远市|