← Graph

Salt

concept 2 connections

Random string/bytes added to a password before hashing so that two users with the same password produce different hashes, defeating rainbow tables and cross-leak reuse of broken hashes. In modern password-hashing algorithms (like Argon2), the salt is passed as a separate argument rather than appended — bcrypt for example does more than concatenate under the hood.

category
practice
Background section explains salt in password hashing.
tool Argon2
uses
Salt concept
Argon2 takes salt as an explicit argument rather than appending it.

Provenance

Read by
1 extraction