PHP Classes

File: test1.php

Recommend this page to a friend!
  Classes of Marcin Wisniowski   AES Cipher   test1.php   Download  
File: test1.php
Role: Example script
Content type: text/plain
Description: Test case
Class: AES Cipher
Encrypt and decrypt data with AES in pure PHP
Author: By
Last change: Update
Date: 16 years ago
Size: 100 bytes
 

Contents

Class file image Download
<?php
include_once('./AES.class.php');

$Cipher = new AES(AES::AES128);
$Cipher->selfTest();
?>