cn007b / crypto

Simple wrapper for php mcrypt. This repo is abandoned 🚨and deprecated ‼️

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crypto

Simple wrapper for php mcrypt.

Install

Via composer: composer require crypto/crypto.

Usage

<?php

use Crypto\Crypto;

$crypto = new Crypto('secret key');
$text = 'Shaken not stirred!';
$encryptedString = $crypto->encrypt($text);
$decryptedString = $crypto->decrypt($encryptedString);

About

Simple wrapper for php mcrypt. This repo is abandoned 🚨and deprecated ‼️


Languages

Language:PHP 100.0%