Login   Register  
PHP Classes
elePHPant
Icontem

File: docs/ej4.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Jose Manuel Busto  >  AES 128  >  docs/ej4.php  >  Download  
File: docs/ej4.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: 2007-01-16 01:34
Size: 255 bytes
 

Contents

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