欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

在主页看到一个终极加密功能

程序员文章站 2022-05-30 11:39:38
...
在首页看到一个终极加密功能
在主页看到一个终极加密功能


// 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...
$hash=base64_encode($hash);

// and md5...
$hash=md5($hash);

// sha1...
$hash=sha1($hash);

// sha256... (one more)
$hash=hash("sha256", $hash);

// sha512
$hash=hash("sha512", $hash);

}

// Finaly, when done, return the value
return $hash;
}
加密 PHP

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 在主页看到一个终极加密功能
  • 专题推荐

    作者信息
    在主页看到一个终极加密功能

    认证0级讲师

    推荐视频教程
  • 在主页看到一个终极加密功能javascript初级视频教程
  • 在主页看到一个终极加密功能jquery 基础视频教程
  • 视频教程分类