Tag

salting

0 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
May 7, 2025 · Backend Development

How to Strengthen Website Password Security Using PHP

This article explains how to improve website password security in PHP by using modern hash functions, adding random salts, employing built‑in password hashing APIs, enforcing strong password policies, scheduling regular password changes, and implementing measures to prevent brute‑force attacks.

HashingPHPbest practices
0 likes · 5 min read
How to Strengthen Website Password Security Using PHP
IT Services Circle
IT Services Circle
Oct 27, 2024 · Information Security

Understanding Password Salting: Why It Matters, How to Generate and Use It, and Additional Security Measures

This article explains what password salting is, why it is essential for protecting stored passwords against rainbow‑table and brute‑force attacks, outlines step‑by‑step how to generate, apply, and verify salted hashes, and lists additional best practices for enhancing overall credential security.

AuthenticationHashingpassword
0 likes · 5 min read
Understanding Password Salting: Why It Matters, How to Generate and Use It, and Additional Security Measures
Java Tech Enthusiast
Java Tech Enthusiast
Apr 13, 2024 · Information Security

Why Websites Require Password Reset Instead of Revealing Original Passwords

Websites cannot reveal original passwords because they store only salted, one‑way hashes, not the plaintext, making recovery impossible; therefore, when users forget their credentials, the secure approach is to verify identity and issue a password reset rather than expose any stored data.

AuthenticationHashingMD5
0 likes · 6 min read
Why Websites Require Password Reset Instead of Revealing Original Passwords
Test Development Learning Exchange
Test Development Learning Exchange
Jul 13, 2018 · Information Security

Using Python hashlib for MD5 Hashing, Salting, and File Checksums

This article explains Python's hashlib module, demonstrates basic MD5 hashing, shows how to compute file checksums, and discusses secure password storage with salting techniques, providing complete code examples for each use case.

HashingMD5file-checksum
0 likes · 7 min read
Using Python hashlib for MD5 Hashing, Salting, and File Checksums
Architect
Architect
Feb 25, 2016 · Information Security

Proper Password Hashing: Salting, Key Stretching, and Secure Implementation

This article explains why simple password hashing is insufficient, describes common attacks such as dictionary, brute‑force, lookup‑table and rainbow‑table attacks, and provides best‑practice guidance—including random salts, CSPRNGs, key‑stretching algorithms like PBKDF2, bcrypt and scrypt—and complete PHP reference implementations.

PBKDF2PHPcryptography
0 likes · 34 min read
Proper Password Hashing: Salting, Key Stretching, and Secure Implementation