Makes data encryption and decryption simple. More...
Public Member Functions | |
setKey ($key) | |
The key is what is used to encrypt and decrypt information. | |
encrypt ($data) | |
Encrypt your data using the specified key. | |
decrypt ($data) | |
Decrypt your data using the specified key. |
Makes data encryption and decryption simple.
It can encrypt data using a special key and just as easily decrypt it using the same key. It uses the mcrypt encryption technology.
Definition at line 16 of file scrypter.php.
setKey | ( | $ | key | ) |
The key is what is used to encrypt and decrypt information.
Make sure to keep what your key is a secret, with it anyone can easily decrypt your information
Definition at line 23 of file scrypter.php.