summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt/cryptutil.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* check crypt() for null. noticed by Jonas Termansentedu2014-11-241-2/+2
|
* Let crypt_checkpass() set EACCES after bcrypt_checkpass() failure;schwarze2014-11-211-2/+4
| | | | ok tedu@
* change prototype for crypt_newhash. the login_cap_t is a holdover from itstedu2014-11-211-8/+4
| | | | | | pwd_gensalt origins, but a string argument works equally work and is more friendly to consumers beyond local user accounts. ok deraadt
* add new function crypt_newhash to simplify creating new hashes.tedu2014-11-171-1/+29
| | | | | does most of the work pwd_gensalt did, but also creates the hash. (unused yet)
* remove md5crypt.tedu2014-05-121-0/+54
while changing things, add a crypt_checkpass wrapper that handles most of the edge cases. (not quite ready for production, though.) ok deraadt