Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 296 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 296 Bytes

#Encryption / Decryption Cypher

Easy encrypt / decrypt class with unique key.

##How To Use

$cypher = new cypher('RANDOM_CODE_HERE');

$encypted = $cypher->encrypt('Some example text.');
//Output: 8sd72kjlasdjfklj23=

print $cypher->decrypt($encrypted);
//Output: Some example text.