litto / passwordencryptor
Password Encryptor Functions
Installs: 8
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/litto/passwordencryptor
Requires
- php: >=5.0
README
Password Encryptor Small library for PHP Website
How to Install?
You can install by using command
composer require litto/passwordencryptor:v1.0
How to Use?
$txtPassword="test@123";
$key = rand(0,9999).rand(111,999);
$crypt = new Crypt;
$crypt->crypt_key($key);// Get encryption key
$password = $crypt->encrypt($txtPassword); // encrypt username