Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-12-10 18:41
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();
?>