Tag

crypt

1 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Apr 26, 2024 · Backend Development

PHP Password Encryption Methods: md5, password_hash, and crypt

This article explains three common PHP password encryption techniques—md5, password_hash, and crypt—providing detailed code examples and guidance on securely storing user passwords during registration and login processes.

BackendMD5crypt
0 likes · 5 min read
PHP Password Encryption Methods: md5, password_hash, and crypt
php中文网 Courses
php中文网 Courses
Feb 8, 2024 · Backend Development

Password Encryption Methods in PHP: md5, password_hash, and crypt

This article explains three common PHP password encryption techniques—md5, password_hash (using BCrypt), and crypt—detailing their security considerations and providing complete code examples for user registration and login verification.

BackendMD5crypt
0 likes · 6 min read
Password Encryption Methods in PHP: md5, password_hash, and crypt
Laravel Tech Community
Laravel Tech Community
Apr 14, 2020 · Backend Development

Using Laravel's Encryption Mechanism: Configuration, Encryption, and Decryption

This guide explains how Laravel leverages OpenSSL for AES‑256/128 encryption, requires a properly set APP_KEY, and provides helper functions and the Crypt facade for encrypting and decrypting values safely, including code examples for typical use cases.

BackendLaravelOpenSSL
0 likes · 3 min read
Using Laravel's Encryption Mechanism: Configuration, Encryption, and Decryption