api接口数据怎么加密 API接口加密

主机教程 建站分享 2年前 (2022-09-30) 209次浏览

文章摘要:api接口数据怎么加密 API接口加密

使用AES加密算法对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);

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:api接口数据怎么加密 API接口加密
文章链接:http://www.7966.org/post/13762.html
转载请注明出处

喜欢 (0)