mjpro14/emj-crypto

A simple dual-layer PHP encryption without keys.

dev-main 2025-04-23 15:06 UTC

This package is not auto-updated.

Last update: 2025-04-24 01:00:09 UTC


README

# EMJ Crypto Simple dual-layer encryption & decryption in PHP with no external keys. ## Install via Composer ```bash composer require mjpro14/emj-crypto usage use EmjCrypto\Crypto; $encrypted = Crypto::emj("Hello World!"); $decrypted = Crypto::dmj($encrypted); # emj-crypto