Download the PHP package sumeetghimire/encrypt-decrypt-with-key without Composer
On this page you can find all versions of the php package sumeetghimire/encrypt-decrypt-with-key. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download sumeetghimire/encrypt-decrypt-with-key
More information about sumeetghimire/encrypt-decrypt-with-key
Files in sumeetghimire/encrypt-decrypt-with-key
Download sumeetghimire/encrypt-decrypt-with-key
More information about sumeetghimire/encrypt-decrypt-with-key
Files in sumeetghimire/encrypt-decrypt-with-key
Vendor sumeetghimire
Package encrypt-decrypt-with-key
Short Description A Laravel package for encrypting and decrypting strings with a key
License MIT
Package encrypt-decrypt-with-key
Short Description A Laravel package for encrypting and decrypting strings with a key
License MIT
Please rate this library. Is it a good library?
Informations about the package encrypt-decrypt-with-key
<!DOCTYPE html>
EncryptDecryptWithKey
Laravel EncryptDecryptWithKey Package
Configuration
You can customize the package configuration by modifying the config/encrypt-decrypt.php
file.
License
The Laravel EncryptDecryptWithKey package is open-sourced software licensed under the MIT license.
Support
For any issues or suggestions, please open an issue on GitHub.
Credits
This package is maintained by Sumeet Ghimire.
Laravel
Require this package in your composer.json
and update composer.
composer require sumeetghimire/encrypt-decrypt-with-key
Example How to use
use SumeetGhimire\EncryptDecryptWithKey\EncryptionHelper;
$encryptedString = EncryptionHelper::encryptString('test');
$decryptedString = EncryptionHelper::decryptString($encryptedString);
return $decryptedString; // Returns 'test'
In .env key will be auto generated change as per your requirement
ENCRYPT_KEY=8141b227d15377e8249b4c2cd42df4a7
All versions of encrypt-decrypt-with-key with dependencies
PHP Build Version
Package Version
The package sumeetghimire/encrypt-decrypt-with-key contains the following files
Loading the files please wait ....