hunnomad / wizard
A simple PHP encryption and decryption utility.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/hunnomad/wizard
Requires
- php: >=7.4
README
A simple PHP encryption and decryption utility.
Installation
composer require hunnomad/wizard
Usage
<?php require 'vendor/autoload.php'; use Custom\Encryption\classWizard; $cipher = new classWizard('12345678901234567890123456789012'); $encrypted = $cipher->encode('Hello, World!'); $decrypted = $cipher->decode($encrypted); echo "Encrypted: $encrypted\n"; echo "Decrypted $decrypted\n";