A simple crypt lib

0.1 2017-12-31 13:58 UTC

This package is auto-updated.

Last update: 2024-04-25 18:08:53 UTC


README

This is small lib to use symmetric cryptography with php.

Installation

composer require lefuturiste/crypt

Usage

Simple usage like this:

$crypt = new Lefuturiste\Crypt\Crypt('YOUR_PASSWORD');
$cipher = $crypt->encrypt('YOUR DATA');
$plainText = $crypt->decrypt($cipher); //YOUR DATA

You can change the method in Crypt constructor :

$crypt = new Lefuturiste\Crypt\Crypt('YOUR_PASSWORD', 'AES-128-CFB1');
$cipher = $crypt->encrypt('YOUR DATA');
$plainText = $crypt->decrypt($cipher); //YOUR DATA

Get list of method available : http://php.net/manual/en/function.openssl-get-cipher-methods.php

Tests

You can test the lib :

vendor/bin/phpunit Tests

Contribution

This is my own usage, and this is very simple usage of cryptography. This is mostly for my personal usage. But you can reports bug, or others things, it's open source project! You can contribute by pull request, the common method in GitHub.