rndoom04/encryptor

Encryption and decryption PHP library.

v1.0.0 2022-03-02 11:09 UTC

This package is auto-updated.

Last update: 2024-04-29 04:47:44 UTC


README

Compatible with PHP >= 7.0.

Install

For PHP version >= 7.0:

composer require Rndoom04/encryptor

How to use it

Firstly init the library by simply "use".

use Rndoom04\encryptor;

Load the library and let's encrypt.

$string_to_test = "Hello this is a text to encrypt.";
$encryptor = new \Rndoom04\encryptor\encryptor();
$encryptor->setKey("my-secret-key"); // Set key

$encrypted_string = $encryptor->encrypt($string_to_test); // Return encrypted string
$decrypted_string = $encryptor->decrypt($encrypted_string); // Encrypted string you can decrypt back to plain string