User Tools

Site Tools


crypt_c

Crypt (C)

Return to Hash

Snippet from Wikipedia: Crypt (C)

crypt is a POSIX C library function. It is typically used to compute the hash of user account passwords. The function outputs a text string which also encodes the salt (usually the first two characters are the salt itself and the rest is the hashed result), and identifies the hash algorithm used (defaulting to the "traditional" one explained below). This output string forms a password record, which is usually stored in a text file.

More formally, crypt provides cryptographic key derivation functions for password validation and storage on Unix systems.

crypt_c.txt · Last modified: 2024/04/28 03:26 (external edit)