encryptionPHP
1.0.0
這是一個非常簡單的PHP加密函式庫。您可以使用此程式庫使用 16、24、32 個字元的私鑰加密或解密字串。
$加密=新加密(字串$ 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 ;
解密加密的晶片。
字串$加密->解密(字串$chiper.字串$iv);
$ decrypted = $ encryption -> decrypt ( $ encrypted , $ iv );
echo $ decrypted ;
結果:
Today is a good day!
筆記:
Use this code to encrypt the data into database