saltrandom
Saltrandom is a term used in computer security to describe a random salt value applied to a password before hashing. The salt is designed to prevent offline attacks by ensuring that identical passwords yield different hash outputs, and to defeat precomputed tables that attempt to reverse hashes. It is a foundational component of modern password storage.
Generation and storage: Saltrandom values are typically produced by cryptographically secure random number generators and should
Usage and formats: Many modern schemes incorporate or manage salts automatically. Typical guidance calls for at
Security considerations: Salts mitigate rainbow table attacks but do not replace strong passwords or robust hashing
History and terminology: The concept of salting passwords emerged to defeat precomputed attacks and has become
See also: Salt (cryptography); Password hashing; Rainbow table; Argon2; bcrypt; PBKDF2; Scrypt.