Download the PHP package adbario/php-encrypter without Composer
On this page you can find all versions of the php package adbario/php-encrypter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download adbario/php-encrypter
More information about adbario/php-encrypter
Files in adbario/php-encrypter
Package php-encrypter
Short Description Encryption with AES-256 and HMAC-SHA256
License MIT
Homepage https://github.com/adbario/php-encrypter
Informations about the package php-encrypter
PHP Encrypter
This project encrypts and decrypts the given value. It uses OpenSSL extension with AES-256 cipher for encryption and HMAC-SHA-256 for hash. The encryption and hash can use different keys.
PHP Encrypter requires PHP 5.3 or higher, OpenSSL and Multibyte String extensions.
Security Notice
As a reversible operation, encryption is not a secure solution for storing passwords. Always use hashing with salt per user for passwords.
Installation
With Composer:
Manual installation:
- Download the latest release
- Extract the files into your project
- require_once '/path/to/php-encrypter/src/Encrypter.php';
- If your PHP version is lower than 7, also polyfill for random_bytes() is required
Usage
Setup the encryption key:
Change the key to your own custom random 32 character string.
Create a new encrypter instance:
If you wish to use a different key for hashing, you can pass it to constructor as a second parameter:
Encryption
Encrypt a string:
Encrypt other variable types with serialization:
Decryption
Decrypt a string:
Decrypt other variable types with serialization:
License
MIT license
All versions of php-encrypter with dependencies
paragonie/random_compat Version ^2.0
ext-openssl Version *
ext-mbstring Version *