Tag

SHA-256

0 views collected around this technical thread.

macrozheng
macrozheng
May 9, 2024 · Information Security

Why Servers Never Store Your Original Password: A Deep Dive into Secure Hashing

This article explains why servers cannot know your original password, covering the principles of password hashing, the difference between cryptographic and non‑cryptographic hash functions, the role of salts, and a Java example using SHA‑256 with salt to securely store passwords.

JavaSHA-256cryptography
0 likes · 6 min read
Why Servers Never Store Your Original Password: A Deep Dive into Secure Hashing
php中文网 Courses
php中文网 Courses
May 23, 2022 · Information Security

Implementing the SHA-256 Hash Algorithm in PHP from Scratch

This article explains the theory behind cryptographic hash functions and provides a complete PHP implementation of the SHA‑256 algorithm, detailing each processing step—from converting strings to binary to final compression—along with supporting helper functions and reference tables.

Binary OperationsPHPSHA-256
0 likes · 19 min read
Implementing the SHA-256 Hash Algorithm in PHP from Scratch