dev-master
9999999-devFDevs Crypt Component
MIT
The Requires
- php >=5.5.9 || ~7.0
- fdevs/padding ^0.1
The Development Requires
- symfony/var-dumper ^3.1
- ext-mcrypt *
Wallogit.com
2017 © Pedro Peláez
FDevs Crypt Component
Crypt uses Composer, please checkout the composer website for more information., (*2)
The simple following command will install fdevs/crypt into your project. It also add a new
entry in your composer.json and update the composer.lock as well., (*3)
composer require fdevs/crypt
<?php use FDevs\Crypt\Encryptor\AES256; $encryptor = new AES256(); $data = '';//your data $secretKey = '';//very secret key $cryptData = $encryptor->encrypt($data, $secretKey); echo $encryptor->decrypt($cryptData,$secretKey);
This library is under the MIT license. See the complete license in the library:, (*4)
LICENSE
Created by 4devs - Check out our blog for more insight into this and other open-source projects we release., (*5)
FDevs Crypt Component
MIT