mkeskin / php-crypt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-crypt

How to using:

Calling class

$crypt = new Crypt;

Create a text

$text = "Hello World!"

Crypt the text

$crypted = $crypt->_crypt($text);

Decrypt the crypted value

$decrypted = $crypt->_decrypt($crypted);

For password

$password = $crypt->password($text);

About


Languages

Language:PHP 100.0%