Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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