Home Backend Development PHP Tutorial Alternative application of php md5 encryption

Alternative application of php md5 encryption

Jul 25, 2016 am 09:04 AM

  1. //Iterative algorithm
  2. function md5_1_1($data, $times = 32)
  3. {
  4. //Loop using MD5
  5. for ($i = 0; $i < $times; $ i++) {
  6. $data = md5($data);
  7. }
  8. return $data;
  9. }
  10. //Recursive algorithm
  11. function md5_1_2($data, $times = 32)
  12. {
  13. if ($times > 0) {
  14. $data = md5($data);
  15. $times--;
  16. return md5_1_2($data, $times); //implement recursion
  17. } else {
  18. return $data;
  19. }
  20. }
  21. ?>
Copy code

Transformation 2: Cryptotext split MD5

  1. //Split the ciphertext into two sections, each section has 16 characters
  2. function md5_2_1($data)
  3. {
  4. //First encrypt the password into a 32-character password Text
  5. $data = md5($data);
  6. //Split the password into two sections
  7. $left = substr($data, 0, 16);
  8. $right = substr($data, 16, 16);
  9. / /Encrypt separately and then merge
  10. $data = md5($left).md5($right);
  11. //Finally, encrypt the long string again to become a 32-character ciphertext
  12. return md5($data);
  13. }
  14. //Split the ciphertext into 32 segments, each segment has 1 character
  15. function md5_2_2($data)
  16. {
  17. $data = md5($data);
  18. //Loop to intercept each character in the ciphertext and encrypt it, Connect
  19. for ($i = 0; $i < 32; $i++) {
  20. $data .= md5($data{$i});
  21. }
  22. //At this time, the length of $data is 1024 characters, and then Perform an MD5 operation
  23. return md5($data);
  24. }
  25. ?>
Copy code

Transformation three: Additional string interference

  1. //Additional string at the end of the original data
  2. function md5_3_1($data, $append)
  3. {
  4. return md5($data.$append);
  5. }
  6. //Additional characters String at the head of the original data
  7. function md5_3_2($data, $append)
  8. {
  9. return md5($append.$data);
  10. }
  11. //Additional string at the head and tail of the original data
  12. function md5_3_3($data, $ append)
  13. {
  14. return md5($append.$data.$append);
  15. }
  16. ?>
Copy code

Transformation four: Case transformation interference Since the English letters in the ciphertext returned by the md5() function provided by PHP are all lowercase, we can convert them all to uppercase and then perform an MD5 operation.

  1. function md5_4($data)
  2. {
  3. //Get the ciphertext of the password first
  4. $data = md5($data);
  5. //Then convert all the English letters in the ciphertext For uppercase
  6. $data = strtotime($data);
  7. //Finally perform another MD5 operation and return
  8. return md5($data);
  9. }
  10. ?>
Copy code

Transformation five: Character String order interference After reversing the order of the ciphertext string after the MD5 operation, perform the MD5 operation again.

  1. function md5_5($data)
  2. {
  3. //Get the ciphertext of the data
  4. $data = md5($data);
  5. //Reverse the character order of the ciphertext string
  6. $data = strrev($data);
  7. //Finally perform another MD5 operation and return
  8. return md5($data);
  9. }
  10. ?>
Copy code

Use php md5() function, more efforts can be made in encrypting user information to reduce more security risks.



Statement of this Website
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

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Introduction to the Instagram API Introduction to the Instagram API Mar 02, 2025 am 09:32 AM

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation Survey Announcement of 2025 PHP Situation Survey Mar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

See all articles