encryptionPHP
1.0.0
Il s'agit d'une bibliothèque de chiffrement PHP très simple. Vous pouvez utiliser cette bibliothèque pour chiffrer ou déchiffrer une chaîne avec une clé privée de 16, 24 ou 32 caractères.
$encryption = new Encryption( string $key );
// Include core encryption library from Src folder
require_once ' encryptionPHP .php ' ;
// Initialize encryption object
$ encryption = new Encryption ( ' bZKn8iklVOQr7eC8ONvnCeRFBJwWo1PG ' );
Chiffre une chaîne pour la sécuriser.
$encryption->encrypt( chaîne $text, chaîne $iv);
// iv() funcation for dynamic encrypted data
$ iv = $ encryption -> iv ();
// Encrypt a string
$ encrypted = $ encryption -> encrypt ( ' Today is a good day! ' , $ iv );
echo $ encrypted ;
Décrypte un chiper crypté.
chaîne $encryption->decrypt( chaîne $chiper. chaîne $iv);
$ decrypted = $ encryption -> decrypt ( $ encrypted , $ iv );
echo $ decrypted ;
Résultat:
Today is a good day!
Note:
Use this code to encrypt the data into database