Skip to content

Obfuscation and Encryption functionality for Laravel

License

Notifications You must be signed in to change notification settings

p5ych0/laracrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laracrypt

CircleCI Obfuscation and Encryption functionality for Laravel

Simple usage example:

app("encrypt.websafe")->encrypt($payload);

Note, that SSL encryptor requires an owner to be set. So you can have multiple keys determined by owner

$ssl = app("encrypt.ssl")->setOwner("owner-id-kebab-cased");
$result = $ssl->encrypt($payload);