Alternative application of php md5 encryption

WBOY
Release: 2016-07-25 09:04:36
Original
887 people have browsed it
  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.



Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template