encryptionPHP
1.0.0
นี่คือไลบรารีการเข้ารหัส PHP ที่ง่ายมาก คุณสามารถใช้ไลบรารีนี้เพื่อเข้ารหัสหรือถอดรหัสสตริงด้วยคีย์ส่วนตัว 16, 24, 32 อักขระ
$encryption = การเข้ารหัสใหม่( สตริง $key );
// Include core encryption library from Src folder
require_once ' encryptionPHP .php ' ;
// Initialize encryption object
$ encryption = new Encryption ( ' bZKn8iklVOQr7eC8ONvnCeRFBJwWo1PG ' );
เข้ารหัสสตริงเพื่อรักษาความปลอดภัย
$การเข้ารหัส->เข้ารหัส( สตริง $ข้อความ, สตริง $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.string $iv);
$ decrypted = $ encryption -> decrypt ( $ encrypted , $ iv );
echo $ decrypted ;
ผลลัพธ์:
Today is a good day!
บันทึก:
Use this code to encrypt the data into database