tperrelli / encrypt
A simple package to encrypt data
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^7.2
- illuminate/contracts: ~5.5.0|~5.6
- illuminate/support: ~5.5.0|~5.6
Requires (Dev)
- phpunit/phpunit: ~5.5.0|~5.6
This package is auto-updated.
Last update: 2024-11-12 18:27:31 UTC
README
A simple library to Encrypt and Decrypt PHP messages
Encrypt is a simple library that provides a smart way to encrypt and decrypt php messages, according to the choosen algorithm.
Installation
composer install tperrelli/encrypt
Usage
Encrypt
$hashed = Encrypt::encrypt('public message');
Decrypt
$public = Encrypt::decrypt($hashed);