sinevia/php-library-crypt

v1.0.0 2018-04-12 04:23 UTC

This package is auto-updated.

Last update: 2024-04-10 08:40:11 UTC


README

The Crypt package provides pure PHP encryption methods with no external dependencies.

Background

Installation

Add the following to your composer file:

   "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/sinevia/php-library-crypt.git"
        }
    ],
    "require": {
        "sinevia/php-library-crypt": "dev-master"
    },

Usage

$pass = 'test';

$enc = Sinevia\Crypt::xorEncode('test',$pass);

$dec = Sinevia\Crypt::xorDecode(enc,$pass);