2017 © Pedro Peláez
 

library crypt

FDevs Crypt Component

image

fdevs/crypt

FDevs Crypt Component

  • Wednesday, July 27, 2016
  • by andrey1s
  • Repository
  • 3 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Crypt Component

Build Status, (*1)

Installation

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

Usage examples

basic usage

<?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);

License

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)

The Versions

27/07 2016

dev-master

9999999-dev

FDevs Crypt Component

  Sources   Download

MIT

The Requires

 

The Development Requires