PHP [php] openssl encrypt/decrypt(AES-256-ECB)
페이지 정보
본문
<?
$iv = '8746376827619797';
$key = "40ea168bdf014de783fb9a6640448bff";
function encrypt($original_string, $crypt_key, $crypt_iv) {
$option = 0;
$cipher_algo = "AES-256-ECB";
return openssl_encrypt($original_string, $cipher_algo, $crypt_key, $option, $crypt_iv);
}
function decrypt($encrypted_string, $crypt_key, $crypt_iv) {
$option = 0;
$cipher_algo = "AES-256-ECB";
$decrypted_string = openssl_decrypt ($encrypted_string, $cipher_algo, $crypt_key, $option, $crypt_iv);
return substr($decrypted_string,16);
}
?>
- 이전글[PHP] $_SERVER를 이용하여 현재 페이지의 URL 정보를 가져오는 방법 22.12.02
- 다음글[php] openssl encrypt/decrypt(AES-256-ECB) 22.08.09
댓글목록
등록된 댓글이 없습니다.