mjpro14/emj-crypto

A simple dual-layer PHP encryption without keys.

Maintainers

Package info

github.com/mjpro14/emj-crypto

pkg:composer/mjpro14/emj-crypto

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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