fpasquer / encrypt-manager-bundle
Encrypt and decrypt string for symfony 4.2.*
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/fpasquer/encrypt-manager-bundle
Requires
- ext-openssl: ^7.2
This package is auto-updated.
Last update: 2025-10-10 23:50:31 UTC
README
###Easy way to encrypt / decrypt string with symfony 4.2.*
Install:
composer require fpasquer/encrypt-manager-bundle
Exemple:
$encryptManager = new EncryptManager(); $str1 = $encryptManager->encrypt("Hello world"); $str2 = $encryptManager->decrypt($str1); dump($str1, $str2);
You can setup the encrytion method in EncryptManager::__controller as :
$encryptManager = new EncryptManager("AES-128-CBC"); ...