php代码
<?php //把密文分割成两段,每段16个字符 function md5_2_1($data) { //先把密码加密成长度为32字符的密文 $data = md5($data); //把密码分割成两段 $left = substr($data, 0, 16); $right = substr($data, 16, 16); //分别加密后再合并 $data = md5($left).md5($right); //最后把长字串再加密一次,成为32字符密文 return md5($data); } //把密文分割成32段,每段1个字符 function md5_2_2($data) { $data = md5($data); //循环地截取密文中的每个字符并进行加密、连接 for ($i = 0; $i < 32; $i++) { $data .= md5($data{$i}); } //这时$data长度为1024个字符,再进行一次MD5运算 return md5($data); } ?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
