search
Homephp教程PHP源码php-md5变换算法之密文分割MD5

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); 
} 
?>

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

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 new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment