attla / pincryp
A layer of encryption a little too judicious.
dev-main
2023-02-07 06:15 UTC
Requires
- php: >=7.2.5
- attla/support: dev-main
Requires (Dev)
- orchestra/testbench: ^7.19
- pestphp/pest: ^1.22
- pestphp/pest-plugin-global-assertions: ^1.0
- phpbench/phpbench: ^1.2
This package is auto-updated.
Last update: 2024-11-07 10:04:14 UTC
README
🧛 A layer of encryption a little too judicious.
Installation
composer require attla/pincryp
Usage
use Attla\Pincryp\Config; use Attla\Pincryp\Factory as Pincryp; // create config instance $config = new Config(); $config->key = 'hic sunt dracones'; // or $config = new Config(['key' => 'hic sunt dracones']); // creating Pincryp instance $pincryp = new Pincryp($config); // encoding $encoded = $pincryp->encode('this is something to encode..'); echo 'encoded: ' . $encoded.PHP_EOL; $decoded = $pincryp->decode($encoded); echo 'decoded: ' . $decoded.PHP_EOL;
The Pincryp can encrypt all primitive types: array
, stdClass
, bool
, string
, integer
, float
and null
.
See an example of array encryption:
// encoding $encoded = $pincryp->encode([ 'name' => 'John Doe', 'email' => 'john@example.com' ]); echo 'encoded: ' . $encoded.PHP_EOL; // to return a stdClass pass the second param as TRUE $decoded = $pincryp->decode($encoded, false); echo 'decoded: ' . $decoded.PHP_EOL;
Config params
License
This package is licensed under the MIT license © Zunq.