An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# laracrypt
[![CircleCI](https://circleci.com/gh/p5ych0/laracrypt/tree/master.svg?style=svg)](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);
```