https://github.com/p5ych0/laracrypt
Obfuscation and Encryption functionality for Laravel
https://github.com/p5ych0/laracrypt
decryption deobfuscation encryption encryption-functionality laracrypt laravel obfuscation php
Last synced: 11 days ago
JSON representation
Obfuscation and Encryption functionality for Laravel
- Host: GitHub
- URL: https://github.com/p5ych0/laracrypt
- Owner: p5ych0
- License: mit
- Created: 2019-05-06T14:08:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T06:21:08.000Z (over 5 years ago)
- Last Synced: 2025-10-23T18:41:27.394Z (3 months ago)
- Topics: decryption, deobfuscation, encryption, encryption-functionality, laracrypt, laravel, obfuscation, php
- Language: PHP
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# laracrypt
[](https://circleci.com/gh/p5ych0/laracrypt/tree/master) Obfuscation and Encryption functionality for Laravel
Simple usage example:
```php
app("encrypt.websafe")->encrypt($payload);
```
Note, that *SSL* encryptor requires an owner to be set. So you can have multiple keys determined by *owner*
```php
$ssl = app("encrypt.ssl")->setOwner("owner-id-kebab-cased");
$result = $ssl->encrypt($payload);
```