PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Ruchu   ASCII Crypt   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: ClassExample
Class: ASCII Crypt
Encrypt and decrypt text messages in pure PHP code
Author: By
Last change:
Date: 18 years ago
Size: 305 bytes
 

Contents

Class file image Download
<?
include_once("asciicrypt.class.php");
//encriptar
$instancia=new ASCIICrypt("pass","en","Quedamos mañana en el bar!");
echo
$instancia->efectua();
echo
"<p>";
//desencriptar
$instancia=new ASCIICrypt("pass","de","FwÂÖûwûñéJóJÂJ#))ûiéKUBÖÂñé))ûwÂñKJnJu)=íBÖÂXL");
echo
$instancia->efectua();
?>