/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// f(ucking) u(ncrackable) e(ncryption) function by BlackHatDBL (www.netforme.net) function fue($hash,$times) { // Execute the encryption(s) as many times as the user wants for($i=$times;$i>0;$i--) { // Encode with base64... // and md5... // sha1... // sha256... (one more) // sha512 } // Finaly, when done, return the value return $hash; }