Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 910 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 910 Bytes

Lencryption

libsodium based alternative to Laravel`s Crypt

Installation

Add bitbeans/lencryption to composer.json.

"bitbeans/lencryption": "dev-master"

Run composer update to pull down the latest version of Yubikey.

Now open up PROJECTFOLDER/config/app.php and add the service provider to your providers array.

'providers' => array(
	Bitbeans\Lencryption\LencryptionServiceProvider::class,
)

And also the alias.

'aliases' => array(
	'LCrypt' => Bitbeans\Lencryption\LencryptionFacade::class,
)

Configuration

Run php artisan vendor:publish and modify the config file (PROJECTFOLDER/config/lencryption.php) with your own information.

Example

use LCrypt;

LCrypt::encrypt("test");

LCrypt::decrypt("eyJub25jZSI6ImZmOHZVNXN3VlExWkJQMTJTalI2ZmpKXC83WGExd3F1dCIsImNpcGhlcnRleHQiOiIwcDZEWWtYeXE0YmJlTVBtcndqN3lzbUdMRjk5SUpsWW5QMVYifQ==");