mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-15 04:28:03 +00:00
9 lines
196 B
PHP
9 lines
196 B
PHP
<?php
|
|
include 'lib/MyCypher.php';
|
|
|
|
$iv = 'asdf';
|
|
$key = 'Hallo123';
|
|
$cypher = new MyCypher($iv=$iv, $key=$key);
|
|
$php_encrypted = $cypher->encrypt('oliver@linux-kernel.at');
|
|
print($php_encrypted);
|