suchen
Heimphp教程php手册PHP写的加密函数,支持私人密钥(详细介绍)

PHP写的加密函数,支持私人密钥(详细介绍)

Jun 13, 2016 am 11:49 AM
php介绍会员函数加密existieren密钥开发支持StundeJa系统详细部分

在开发PHP系统时,会员部分往往是一个必不可少的模块,而密码的处理又是不得不面对的问题,PHP 的 Mcrypt 加密库又需要额外设置,很多人都是直接使用md5()函数加密,这个方法的确安全,但是因为md5是不可逆加密,无法还原密码,因此也有一些不便之处,本文介绍加密函数支持私钥,用起来还是不错的.
代码如下:
PHP:

复制代码 代码如下:


  1.  



  2.  


  3. // 说明:PHP 写的加密函数,支持私人密钥


  4. // 整理:http://www.jb51.net


  5.  


  6. function
     keyED(
    $txt
    ,$encrypt_key
    )
      


  7. {
      


  8.     $encrypt_key
     = md5
    (
    $encrypt_key
    )
    ;  


  9.     $ctr
    =0
    ;  


  10.     $tmp
     = ""
    ;  


  11.     for
     (
    $i
    =0
    ;$i
    (
    $txt
    )
    ;$i
    ++)
      


  12.     {
      


  13.         if
     (
    $ctr
    ==strlen
    (
    $encrypt_key
    )
    )
     $ctr
    =0
    ;  


  14.         $tmp
    .= substr
    (
    $txt
    ,$i
    ,1
    )
     ^ substr
    (
    $encrypt_key
    ,$ctr
    ,1
    )
    ;  


  15.         $ctr
    ++;  


  16.     }
      


  17.     return
     $tmp
    ;  


  18. }
      


  19.  


  20. function
     encrypt(
    $txt
    ,$key
    )
      


  21. {
      


  22.     srand
    (
    (
    double)
    microtime
    (
    )
    *1000000
    )
    ;  


  23.     $encrypt_key
     = md5
    (
    rand
    (
    0
    ,32000
    )
    )
    ;  


  24.     $ctr
    =0
    ;  


  25.     $tmp
     = ""
    ;  


  26.     for
     (
    $i
    =0
    ;$i
    (
    $txt
    )
    ;$i
    ++)
      


  27.     {
      


  28.         if
     (
    $ctr
    ==strlen
    (
    $encrypt_key
    )
    )
     $ctr
    =0
    ;  


  29.         $tmp
    .= substr
    (
    $encrypt_key
    ,$ctr
    ,1
    )
     . (
    substr
    (
    $txt
    ,$i
    ,1
    )
     ^ substr
    (
    $encrypt_key
    ,$ctr
    ,1
    )
    )
    ;  


  30.         $ctr
    ++;  


  31.     }
      


  32.     return
     keyED(
    $tmp
    ,$key
    )
    ;


  33. }
      


  34.  


  35. function
     decrypt(
    $txt
    ,$key
    )
      


  36. {
      


  37.     $txt
     = keyED(
    $txt
    ,$key
    )
    ;  


  38.     $tmp
     = ""
    ;  


  39.     for
     (
    $i
    =0
    ;$i
    (
    $txt
    )
    ;$i
    ++)
      


  40.     {
      


  41.         $md5
     = substr
    (
    $txt
    ,$i
    ,1
    )
    ;  


  42.         $i
    ++;  


  43.         $tmp
    .= (
    substr
    (
    $txt
    ,$i
    ,1
    )
     ^ $md5
    )
    ;  


  44.     }
      


  45.     return
     $tmp
    ;  


  46. }
     


  47.  


  48. $key
     = "www.yitu.org"
    ;  


  49. $string
     = "我是加密字符"
    ;  


  50.  


  51. // encrypt $string, and store it in $enc_text  


  52. $enc_text
     = encrypt(
    $string
    ,$key
    )
    ;  


  53.  


  54. // decrypt the encrypted text $enc_text, and store it in $dec_text  


  55. $dec_text
     = decrypt(
    $enc_text
    ,$key
    )
    ;  


  56.  


  57. print
     "加密的 text : $enc_text
    "

    ;  


  58. print
     "解密的 text : $dec_text
    "

    ;  


  59. ?>
     


  60.  




每一次加密后的结果是不一样的,大大加强了密码的安全性.
Stellungnahme
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heiße Werkzeuge

DVWA

DVWA

Damn Vulnerable Web App (DVWA) ist eine PHP/MySQL-Webanwendung, die sehr anfällig ist. Seine Hauptziele bestehen darin, Sicherheitsexperten dabei zu helfen, ihre Fähigkeiten und Tools in einem rechtlichen Umfeld zu testen, Webentwicklern dabei zu helfen, den Prozess der Sicherung von Webanwendungen besser zu verstehen, und Lehrern/Schülern dabei zu helfen, in einer Unterrichtsumgebung Webanwendungen zu lehren/lernen Sicherheit. Das Ziel von DVWA besteht darin, einige der häufigsten Web-Schwachstellen über eine einfache und unkomplizierte Benutzeroberfläche mit unterschiedlichen Schwierigkeitsgraden zu üben. Bitte beachten Sie, dass diese Software

SublimeText3 chinesische Version

SublimeText3 chinesische Version

Chinesische Version, sehr einfach zu bedienen

SublimeText3 Englische Version

SublimeText3 Englische Version

Empfohlen: Win-Version, unterstützt Code-Eingabeaufforderungen!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Leistungsstarke integrierte PHP-Entwicklungsumgebung

PHPStorm Mac-Version

PHPStorm Mac-Version

Das neueste (2018.2.1) professionelle, integrierte PHP-Entwicklungstool