dev-master
9999999-devIceCrypt PHP Encryption
MIT
The Development Requires
by Ammar Faizi
0.0.1
0.0.1.0IceCrypt PHP Encryption
MIT
The Development Requires
by Ammar Faizi
IceCrypt PHP Encryption
A tool for secrets management and encryption as a service., (*1)
composer require ammarfaizi2/icecrypt
, (*2)
<?php require __DIR__ . "/vendor/autoload.php"; use IceCrypt\IceCrypt; $string = "Hello World!"; $key = "secret12345"; // encrypt $encrypted_string = IceCrypt::encrypt($string, $key); echo "Encrypted string : " . $encrypted_string . "\n"; // decrypt $decrypted_string = IceCrypt::decrypt($encrypted_string, $key); echo "Decrypted string : " . $decrypted_string . "\n";
Licensed under the MIT License, (*3)
IceCrypt PHP Encryption
MIT
IceCrypt PHP Encryption
MIT