


Introduction to several ways to implement encryption in PHP, several ways to implement encryption in PHP
The encryption methods in PHP are as follows
1. MD5 encryption
string md5 ( string $str [, bool $raw_output = false ] )
Parameters
str -- Original string.
raw_output -- If the optional raw_output is set to TRUE, the MD5 message digest will be returned in raw binary format with a length of 16 bytes.
This is an irreversible encryption, execute the following code
$password = '123456';
echo md5($password);
The result is e10adc3949ba59abbe56e057f20f883e
2. Crype encryption
string crypt ( string $str [, string $salt ] )
crypt() Returns a hashed string based on the standard UNIX DES algorithm or another alternative algorithm available on the system.
Parameters
str -- The string to be hashed.
salt -- Optional salt value string. If not provided, algorithm behavior will be determined by different algorithm implementations and may lead to unpredictable endings.
This is also an irreversible encryption, execute the following code
$password = '123456';
$salt = "test"; // Only take the first two
echo crypt($password, $salt);
The result is teMGKvBPcptKo
An example of using automatic salt value is as follows:
$password = crypt('mypassword'); // Automatically generate salt value
/* You should use the complete result of crypt() as a salt value for password verification to avoid problems caused by using different hashing algorithms. (As mentioned above, password hashes based on the standard DES algorithm use a 2-character salt, but hashes based on the MD5 algorithm use a 12-character salt.) */
if (crypt('mypassword', $password) == $password) {
echo "Password verified!";
}
The execution result is the output Password verified!
Examples of using crypt() with different hash types are as follows:
if (CRYPT_STD_DES == 1) {
echo 'Standard DES: ' . crypt('rasmuslerdorf', 'rl') . "n";
}
if (CRYPT_EXT_DES == 1) {
echo 'Extended DES: ' . crypt('rasmuslerdorf', '_J9..rasm') . "n";
}
if (CRYPT_MD5 == 1) {
echo 'MD5: ' . crypt('rasmuslerdorf', '$1$rasmusle$') . "n";
}
if (CRYPT_BLOWFISH == 1) {
echo 'Blowfish: ' . crypt('rasmuslerdorf', '$2a$07$usesomesillystringforsalt$') . "n";
}
if (CRYPT_SHA256 == 1) {
echo 'SHA-256: ' . crypt('rasmuslerdorf', '$5$rounds=5000$usesomesillystringforsalt$') . "n";
}
if (CRYPT_SHA512 == 1) {
echo 'SHA-512: ' . crypt('rasmuslerdorf', '$6$rounds=5000$usesomesillystringforsalt$') . "n";
}
The results are as follows
Standard DES: rl.3StKT.4T8M
Extended DES: _J9..rasmBYk8r9AiWNc
MD5:
Blowfish: $2a$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi
SHA-256: $5$rounds=5000$usesomesillystri$KqJWpanXZHKq2BOB43TSaYhEWsQ1Lr5QNyPCDH/Tp.6
SHA-512: $6$rounds=5000$usesomesillystri$D4IrlXatmP7rx3P3InaxBeoomnAihCKRVQP22JZ6EY47Wc6BkroIuUUBOov1i.S5KPgErtP/EN5mcO.ChWQW21
On systems where the crypt() function supports multi-hashing, the following constants are set to 0 or 1 depending on whether the corresponding type is available:
CRYPT_EXT_DES - Extended hashing based on the DES algorithm. The salt is a 9-character string consisting of an underscore followed by the 4-byte cycle count and the 4-byte salt. They are encoded into printable characters, 6 bits each, with the least significant bits first. 0 to 63 are encoded as "./0-9A-Za-z". Using illegal characters in the salt will cause crypt() to fail.
CRYPT_MD5 - MD5 hashing uses a 12-character string salt starting with $1$.
CRYPT_BLOWFISH - The Blowfish algorithm uses the following salt: "$2a$", a two-digit cost parameter, "$", and a 64-bit string consisting of characters from "./0-9A-Za-z". Using characters outside this range in the salt will cause crypt() to return an empty string. The two-digit cost parameter is the base-2 logarithm of the number of cycles. Its range is 04-31. Exceeding this range will cause crypt() to fail.
CRYPT_SHA256 - The SHA-256 algorithm hashes using a 16-character string salt starting with $5$. If the salt string begins with "rounds=
CRYPT_SHA512 - The SHA-512 algorithm hashes using a 16-character string salt starting with $6$. If the salt string begins with "rounds=
3. Sha1 encryption
Parameters
str -- Input string.
raw_output -- If the optional raw_output parameter is set to TRUE, the sha1 digest will be returned in raw format with a length of 20 characters, otherwise the return value is a 40-character hexadecimal number.
This is also an irreversible encryption, execute the following code:
$password = '123456';
echo sha1($password);
The result obtained is 7c4a8d09ca3762af61e59520943dc26494f8941b
http://www.cmd5.com/
Do you think it is useless even if you add encryption? In fact, it is not the case. As long as your encryption is complex enough, the possibility of being cracked is smaller. For example, you can use a mixture of the above three encryption methods to encrypt. I will recommend to everyone a php encryption library.
4. URL encryption
string urlencode ( string $str )This function facilitates encoding a string and using it in the request part of the URL, and it also facilitates passing variables to the next page.
Returns a string in which all non-alphanumeric characters except -_. will be replaced with a percent sign (%) followed by two hexadecimal digits, and spaces are encoded as plus signs ( +). This encoding is the same as the encoding of WWW form POST data, and the same encoding as the application/x-www-form-urlencoded media type. For historical reasons, this encoding differs from the RFC1738 encoding in encoding spaces as plus signs (+).
string urldecode ( string $str )
Decode any %## in the given encoded string. The plus sign ('+') is decoded into a space character.
This is a reversible encryption. The urlencode method is used for encryption and the urldecode method is used for decryption. Execute the following code:
$url = 'http://www.xxx.com/CraryPrimitiveMan/';
$encodeUrl = urlencode($url);
echo $encodeUrl . "n";// If it is displayed on a web page, change n to
echo urldecode($encodeUrl);
The results obtained are as follows
http://www.xxx.com/CraryPrimitiveMan/
The method of encrypting URLs based on RFC 3986 is as follows:
function myUrlEncode($string) {
$entities = array('%21', '%2A', '%27', '%28', '%29', '%3B', '%3A', '%40', '%26', '%3D', '%2B', '%24', '%2C', '%2F', '%3F', '%25', '%23', '%5B', '%5D') ;
$replacements = array('!', '*', "'", "(", ")", ";", ":", "@", "&", "=", "+", " $", ",", "/", "?", "%", "#", "[", "]");
Return str_replace($entities, $replacements, urlencode($string));
}
5. Base64 information encoding and encryption
string base64_encode ( string $data )
Encode data using base64.
This encoding is designed to enable binary data to be transmitted over non-pure 8-bit transport layers, such as the body of an email.
Base64-encoded data takes up about 33% more space than the original data.
string base64_decode ( string $data [, bool $strict = false ] )
Decode base64 encoded data.
Parameters
data -- encoded data.
strict -- Returns FALSE if the input data exceeds the base64 alphabet.
Execute the following code:
$name = 'CraryPrimitiveMan';
$encodeName = base64_encode($name);
echo $encodeName . "n";
echo base64_decode($encodeName);
The results are as follows
Q3JhcnlQcmltaXRpdmVNYW4=
CraryPrimitiveMan
Recommend phpass
Tested with phpass 0.3, the standard way to protect user passwords by hashing them before storing them in the database. Many commonly used hashing algorithms such as md5 and even sha1 are not secure for password storage because hackers can easily crack passwords using those algorithms.
The most secure way to hash passwords is to use the bcrypt algorithm. The open source phpass library provides this functionality in an easy-to-use class.
// Include phpass library
require_once('phpass-03/PasswordHash.php')
// Initialize the hasher to be non-portable (this is safer)
$hasher = new PasswordHash(8, false);
// Calculate the hash value of the password. $hashedPassword is a 60-character string.
$hashedPassword = $hasher->HashPassword('my super cool password');
// You can now safely save $hashedPassword to the database!
// Determine whether the user entered the correct password by comparing the user input content (generated hash value) with the hash value we calculated previously
$hasher->CheckPassword('the wrong password', $hashedPassword); // false
$hasher->CheckPassword('my super cool password', $hashedPassword); // true
?>
The above is the introduction of this article about PHP encryption method. I hope you will like it.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
