encryptionPHP
1.0.0
이것은 매우 간단한 PHP 암호화 라이브러리입니다. 이 라이브러리를 사용하여 16, 24, 32자의 개인 키로 문자열을 암호화하거나 해독할 수 있습니다.
$encryption = 새로운 암호화( string $key );
// Include core encryption library from Src folder
require_once ' encryptionPHP .php ' ;
// Initialize encryption object
$ encryption = new Encryption ( ' bZKn8iklVOQr7eC8ONvnCeRFBJwWo1PG ' );
보안을 위해 문자열을 암호화합니다.
$암호화->암호화( 문자열 $text, 문자열 $iv);
// iv() funcation for dynamic encrypted data
$ iv = $ encryption -> iv ();
// Encrypt a string
$ encrypted = $ encryption -> encrypt ( ' Today is a good day! ' , $ iv );
echo $ encrypted ;
암호화된 칩퍼를 해독합니다.
string $encryption->decrypt( string $ chiper.string $iv);
$ decrypted = $ encryption -> decrypt ( $ encrypted , $ iv );
echo $ decrypted ;
결과:
Today is a good day!
메모:
Use this code to encrypt the data into database