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 ' );
文字列を暗号化してセキュリティを確保します。
$encryption->encrypt( string $text, string $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