/encryption_decryption-cypher

Easy encrypt / decrypt class with unique key (aka SALT).

Primary LanguagePHP

#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.