PHP Classes

File: docs/ej2.php

Recommend this page to a friend!
  Classes of Jose Manuel Busto   AES 128   docs/ej2.php   Download  
File: docs/ej2.php
Role: Example script
Content type: text/plain
Description: Example of use
Class: AES 128
A pure PHP AES 128 encryption implementation
Author: By
Last change:
Date: 17 years ago
Size: 244 bytes
 

Contents

Class file image Download
<?PHP
require_once('../AES128.php');
$aes=new AES128();
$key=$aes->makeKey("0123456789abcdef");
$ct=$aes->blockEncrypt("0123456789abcdef", $key);
$cpt=$aes->blockDecrypt($ct, $key);
echo(
"CipherText: $ct <br/> PlainText: $cpt <br/>");
?>