I have released Ncrypt, a 2-way encryption library for PHP. Using Ncrypt, you can encrypt a string and decrypt an encrypted string. Steps 1. Include the class 1.a. Option 1 (using Composer) Add the following to your composer.json file-
1 2 3 4 5 |
{ "require": { "mukto90/ncrypt": "dev-master" } } |
Run composer install command. Include your autoloader file (if not already), like this-
1 |
include 'vendor/autoload.php'; |
1.b.…