bobbybouwmann/legacy-encrypter

The legacy version of the Laravel mcrypt encrypter (for 5.1 - 5.3).

v1.0.0 2016-08-03 21:22 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:51:24 UTC


README

This encryption package provides support for the legacy Mcrypt encrypter used by Laravel 5.0 through 5.2. It is primarily intended to be used to migrate your data to the new OpenSSL based encrypter used in 5.1 through the latest release of Laravel.

Usage Example

use Laravel\LegacyEncrypter\McryptEncrypter;

$encrypter = new McryptEncrypter($encryptionKey);

$encrypted = $encrypter->encrypt('I am encrypted!');

$decrypted = $encrypter->decrypt($encrypted);