PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Er. Rochak Chauhan   PHP MD5 Decrypter   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: PHP MD5 Decrypter
Decrypt MD5 password and hashes with MD5Decryter
Author: By
Last change:
Date: 14 years ago
Size: 372 bytes
 

Contents

Class file image Download
<?php
$md5Hash
="21232f297a57a5a743894a0e4a801fc3";
$md5Hash="e10adc3949ba59abbe56e057f20f883e";

require(
"PhpMd5Decrypter.inc.php");
$phpMd5Decrypter=new PhpMd5Decrypter();
$normalText=$phpMd5Decrypter->decrypt($md5Hash);

if(
$normalText===false){
    echo
"The Password was too strong to crack.";
}
else{
    echo
"Password was too weak: It was $normalText";
}
?>