PHP snippet - Ultimate encryption

From , 5 Years ago, written in PHP, viewed 225 times.
URL https://pastebin.vip/view/769675d7
  1. // f(ucking) u(ncrackable) e(ncryption) function by BlackHatDBL (www.netforme.net)
  2. function fue($hash,$times) {
  3.         // Execute the encryption(s) as many times as the user wants
  4.         for($i=$times;$i>0;$i--) {
  5.                 // Encode with base64...
  6.                 $hash=base64_encode($hash);
  7.                 // and md5...
  8.                 $hash=md5($hash);
  9.                 // sha1...
  10.                 $hash=sha1($hash);
  11.                 // sha256... (one more)
  12.                 $hash=hash("sha256", $hash);
  13.                 // sha512
  14.                 $hash=hash("sha512", $hash);
  15.  
  16.         }
  17.         // Finaly, when done, return the value
  18.         return $hash;
  19. }

Reply to "PHP snippet - Ultimate encryption"

Here you can reply to the paste above

captcha

https://burned.cc - Burn After Reading Website