txthinking / encryption
Use Laravel 5 encryption as a standalone component.
This package's canonical repository appears to be gone and the package has been frozen as a result.
v5.0.1
2015-06-17 10:37 UTC
Requires
- illuminate/container: ~5.0
- illuminate/encryption: ~5.0
- jeremeamia/superclosure: ~2.1
Requires (Dev)
- phpunit/phpunit: ~4.6
This package is not auto-updated.
Last update: 2020-04-03 17:07:01 UTC
README
Installation
Use Laravel 5 encryption as a standalone component
$ composer require txthinking/encryption
Usage
<?php
use Tx\CryptProvider;
$crypt = (new CryptProvider([
'key' => 'abcdefghijhlmnopqrsduvqxyzaaaaaa',
'cipher' => 'AES-256-CBC',
]))->getInstance();
$r = $crypt->encrypt('who am i');
var_dump($crypt->decrypt($r));