tperrelli/encrypt

A simple package to encrypt data

v1.0 2022-12-12 14:06 UTC

This package is auto-updated.

Last update: 2024-04-12 17:21:49 UTC


README

A simple library to Encrypt and Decrypt PHP messages

Encrypt is a simple library that provides a smart way to encrypt and decrypt php messages, according to the choosen algorithm.

Installation

composer install tperrelli/encrypt

Usage

Encrypt

$hashed = Encrypt::encrypt('public message');

Decrypt

$public = Encrypt::decrypt($hashed);

License

MIT