Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/litto/passwordencryptor
Password Encryptor Small library for PHP Website
https://github.com/litto/passwordencryptor
Last synced: about 2 months ago
JSON representation
Password Encryptor Small library for PHP Website
- Host: GitHub
- URL: https://github.com/litto/passwordencryptor
- Owner: litto
- License: gpl-3.0
- Created: 2022-02-07T10:08:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-07T10:17:03.000Z (almost 3 years ago)
- Last Synced: 2024-05-06T07:42:30.873Z (8 months ago)
- Language: PHP
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password Encryptor
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