MD5


SUBMITTED BY: kodde177

DATE: Nov. 24, 2015, 3:57 p.m.

FORMAT: Text only

SIZE: 524 Bytes

HITS: 579

  1. The concept of Double MD5 Encryption is simple, you just need to make sure that do it right, here is an example code:
  2. PHP:
  3. <?php
  4. $pass= "hackedpass123";
  5. echo md5(md5($pass));
  6. ?>
  7. This would return: 6983505b0cd56b410d49f486cfe125d0 and it's really difficult and in most cases impossible to crack this. General MD5 Hashes have the word/password there, but if you were to encrypt a password twice, the only way of finding that encryption is to double encrypt. It's really easy to install onto your original Script/Code

comments powered by Disqus