Query: crypt_gensalt
OS: opendarwin
Section: 3c
Links: opendarwin man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
crypt_gensalt(3C) Standard C Library Functions crypt_gensalt(3C)NAMEcrypt_gensalt - generate salt string for string encodingSYNOPSIS#include <crypt.h> char *crypt_gensalt(const char *oldsalt, const struct passwd *userinfo);DESCRIPTIONThe crypt_gensalt() function generates the salt string required by crypt(3C). If oldsalt is NULL, crypt_gensalt() uses the algorithm defined by CRYPT_DEFAULT in /etc/security/policy.conf. See policy.conf(4). If oldsalt is non-null, crypt_gensalt() determines if the algorithm specified by oldsalt is allowable by checking the CRYPT_ALGO- RITHMS_ALLOW and CRYPT_ALGORITHMS_DEPRECATE variables in /etc/security/policy.conf. If the algorithm is allowed, crypt_gensalt() loads the appropriate shared library and calls crypt_gensalt_impl(3C). If the algorithm is not allowed or there is no entry for it in crypt.conf, crypt_gensalt() uses the default algorithm. The mechanism just described provides a means to migrate users to new password hashing algorithms when the password is changed.RETURN VALUESUpon successful completion, crypt_gensalt() returns a pointer to the new salt. Otherwise a null pointer is returned and errno is set to indicate the error.ERRORSThe crypt_gensalt() function will fail if: EINVAL The configuration file crypt.conf contains an invalid entry. ELIBACC The required shared library was not found. ENOMEM There is insufficient memory to perform hashing.USAGEThe value returned by crypt_gensalt() points to a null-terminated string. The caller of crypt_gensalt() is responsible for calling free(3C). Applications dealing with user authentication and password changing should not call crypt_gensalt() directly but should instead call the appropriate pam(3PAM) functions.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOpasswd(1), crypt(3C), crypt_genhash_impl(3C), crypt_gensalt_impl(3C), getpassphrase(3C), malloc(3C), pam(3PAM), crypt.conf(4), passwd(4), policy.conf(4), attributes(5) SunOS 5.10 10 Jun 2002 crypt_gensalt(3C)
Related Man Pages |
---|
crypt_gensalt(3c) - opensolaris |
crypt_gensalt(3c) - plan9 |
crypt_gensalt(3c) - opendarwin |
crypt_gensalt(3c) - debian |
crypt_gensalt(3c) - x11r4 |
Similar Topics in the Unix Linux Community |
---|
Unable to change the passwd |
User account get locked due to strange behaviours |