soumik/libcipher

AES-256-CBC key based encryption and decryption

1.0 2021-07-09 18:21 UTC

This package is not auto-updated.

Last update: 2025-06-22 12:19:35 UTC


README

composer require soumik/libcipher

require_once __DIR__ . "/vendor/autoload.php";
use libcipher\src as lib;

lib\Cipher::encrypt("Your text", "Random key 1st pair", "Random key 2nd pair");

lib\Cipher::decrypt("Your encrypted text", "Key 1st pair", "Key 2nd pair");
@version PHP >= 7.4
GNU GENERAL PUBLIC LICENSE