/ Published in: PHP
Expand |
Embed | Plain Text
// 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) $hash=hash("sha256", $hash); // sha512 $hash=hash("sha512", $hash); } // Finaly, when done, return the value return $hash; }
Comments
Subscribe to comments
You need to login to post a comment.

This is not encryption, this is hashing. An encrypted value can be reversed to its original value. A hash can not be reversed, as is the case in your function.
Why not just bcrypt?