In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article introduces the knowledge of "the encryption and decryption function in PHP and the example usage of DES encryption and decryption". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
This paper gives an example of the application of encryption and decryption function in PHP and DES encryption and decryption, which is shared for your reference. The details are as follows:
Example, example of php encryption and decryption
Encryption function:
The copy code is as follows:
/ *
* function: encrypt strings
* Parameter 1: content to be encrypted
* Parameter 2: key
, /
Function passport_encrypt ($str,$key) {/ / encryption function
Srand ((double) microtime () * 1000000)
$encrypt_key=md5 (rand (0, 32000))
$ctr=0
$tmp=''
For ($iSuppli
The following are the test results:
The copy code is as follows:
$str = '12345678'
$key = '1234abcd'
$crypt = new DES ($key)
$mstr = $crypt- > encrypt ($str)
$str = $crypt- > decrypt ($mstr)
Echo $str.''. $mstr
Example 2
The code is as follows:
The copy code is as follows:
/ * *
* encrypt the parameters that need to be passed in url by get
, /
Function args_encode ($data) {
If (is_array ($data)) {
$string = http_build_query ($data)
Return base64_encode ($string)
} else {
Return false
}
}
/ * *
* get the parameters passed by get in url
, /
Function getargs () {
$string = base64_decode ($_ GET ['args'])
Parse_str ($string,$g)
Return $g
}
This is the end of the introduction of the encryption and decryption function in PHP and the example usage of DES encryption and decryption. Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.