728x90
[PHP] AES256 암호화, 복호화
function AES_Encode($plain_text)
{
global $key;
return base64_encode(openssl_encrypt($plain_text, "aes-256-cbc", $key, true, str_repeat(chr(0), 16)));
}
function AES_Decode($base64_text)
{
global $key;
return openssl_decrypt(base64_decode($base64_text), "aes-256-cbc", $key, true, str_repeat(chr(0), 16));
}
728x90
'자료' 카테고리의 다른 글
[올리디버거]더미다/쉘던 우회 플러그인 설정방법 (0) | 2021.01.14 |
---|---|
[PHP] 13자리 타임스탬프(Timestamp) 만드는법 (0) | 2021.01.09 |
jquery 링크 걸기 ( jquery / google ) (0) | 2020.12.26 |
PHP 함수 모음 (0) | 2020.12.25 |
[VB.net/C#] 프로그램 중복 실행 방지 / 뮤텍스 이용 (0) | 2020.12.22 |