PHP encryption and decryption algorithm function, mcrypt_encrypt is no longer recommended
黄舟
黄舟 2017-05-16 13:16:22
0
4
791

The official website has a warning: This function has been DEPRECATED as of PHP 7.1.0. Relying on this function is highly discouraged.

So what function is used for encryption and decryption?

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(4)
仅有的幸福

openssl_encrypt
openssl_decrypt

>>> openssl_encrypt("1", "aes-256-cbc", "12312321", 0, "1234123443212345");
=> "x6Zfu2cbtbMDfkt2s/GE2A=="
>>> openssl_decrypt("x6Zfu2cbtbMDfkt2s/GE2A==", "aes-256-cbc", "12312321", 0, "1234123443212345");
=> "1"

Also see How do you Encrypt and Decrypt a PHP String?

巴扎黑

password_hash
password_verify

某草草

What about hash encryption?

漂亮男人

Asymmetric encryption, RSA.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template