Download the PHP package stlswm/php-encrypt without Composer
On this page you can find all versions of the php package stlswm/php-encrypt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download stlswm/php-encrypt
More information about stlswm/php-encrypt
Files in stlswm/php-encrypt
Download stlswm/php-encrypt
More information about stlswm/php-encrypt
Files in stlswm/php-encrypt
Please rate this library. Is it a good library?
Informations about the package php-encrypt
php-encrypt
php加密算法库
//工行加密举例:
$iv = str_repeat("\0", openssl_cipher_iv_length('aes-128-cbc'));
$ase = new \stlswm\PHPEncrypt\AES(base64_decode('MTExMTExMTExMTExMTExMQ=='), 'aes-128-cbc', $iv,
OPENSSL_RAW_DATA);
$e = base64_encode($ase->encrypt('123'));
$d = $ase->decrypt(base64_decode($e));
$this->assertSame('123',$d);
All versions of php-encrypt with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.4
ext-openssl Version *
ext-openssl Version *
The package stlswm/php-encrypt contains the following files
Loading the files please wait ....