codezero/encrypter is a Laravel package for encrypt and decrypt strings in php..
It currently has 3 GitHub stars and 96.425 downloads on Packagist (latest version 2.0.2).
Install it with composer require codezero/encrypter.
Discover more Laravel packages by codezero
or browse all Laravel packages to compare alternatives.
Last updated
This package includes an adapter for Laravel's Encrypter that adheres to my Encrypter interface.
This can be used in vanilla PHP. Other implementations might be added in the future.
Install this package through Composer:
composer require codezero/encrypter
Autoload the vendor classes:
require_once 'vendor/autoload.php'; // Path may vary
Choose a key. You will need the same key that was used to encrypt a string, to decrypt it.
$key = 'my secret key';
And then use the DefaultEncrypter implementation:
$encrypter = new \CodeZero\Encrypter\DefaultEncrypter($key);
$encrypted = $encrypter->encrypt('some string');
try {
$decrypted = $encrypter->decrypt($encrypted);
} catch (\CodeZero\Encrypter\DecryptException $exception) {
// Decryption failed...
}
$ composer run test
If you discover any security related issues, please e-mail me instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.