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

1.0.0 2025-01-11 17:00 UTC

This package is auto-updated.

Last update: 2025-12-11 18:50:54 UTC


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";