PHP Classes

File: README.txt

Recommend this page to a friend!
  Classes of Alex Telford   Metalix Encryption   README.txt   Download  
File: README.txt
Role: Documentation
Content type: text/plain
Description: readme file
Class: Metalix Encryption
Generate hash of string applying MD5 several times
Author: By
Last change:
Date: 14 years ago
Size: 746 bytes
 

Contents

Class file image Download
DOCUMENTATION for metalix class v1.0 1. include the file include('metalix.php'); 2. initiate the class $test = new metalix('mytext'); 3.[optional] output echo $test; [recommended] I recommend you change the default options within the class change $this->code = '' to any preferred string. (a random hash is best) - this is the string used on either side of the md5 during the encryption process change $this->level = 10 to any number (try less than 25 so as not to crash the server) - this is the number of times the metalix class will run change $this->add = 5 to any number (try less than 25 so as not to crash the server) - this is the number of characters that is added to each side of the md5 hash