Download the PHP package primus852/simple-crypt without Composer
On this page you can find all versions of the php package primus852/simple-crypt. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download primus852/simple-crypt
More information about primus852/simple-crypt
Files in primus852/simple-crypt
Download primus852/simple-crypt
More information about primus852/simple-crypt
Files in primus852/simple-crypt
Vendor primus852
Package simple-crypt
Short Description Simple String Crypt
License GPL-3.0-or-later
Package simple-crypt
Short Description Simple String Crypt
License GPL-3.0-or-later
Please rate this library. Is it a good library?
Informations about the package simple-crypt
simple-crypt
Very simple way to crypt strings (do not use to crypt sensitive data)
Usage
$sc = new SimpleCrypt('my-salt', 'iv');
Encrypt
$encrypted = $sc->encrypt('TEST');
Decrypt
$decrypted = $sc->decrypt($encrypted);
Static
$enc = SimpleCrypt::enc('TEST');
$dec = SimpleCrypt::dec($enc);
Cipher ( https://github.com/defuse/php-encryption)
$enc = SimpleCrypt::encCipher('TEST','MyLongASCIIKey');
$dec = SimpleCrypt::decCipher($enc,'MyLongASCIIKey);
All versions of simple-crypt with dependencies
PHP Build Version
Package Version
The package primus852/simple-crypt contains the following files
Loading the files please wait ....