diff options
author | markm <markm@FreeBSD.org> | 2001-03-11 16:05:43 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-03-11 16:05:43 +0000 |
commit | 10da32144618e3bcc873be353d69670aff7c3534 (patch) | |
tree | 6cf8481c0eae7ed5de2122e23b4dcaa84a01088b /lib/libcrypt/crypt.h | |
parent | 9695e56e6ca3397d424c5a2b13ce6c65379d11ba (diff) | |
download | FreeBSD-src-10da32144618e3bcc873be353d69670aff7c3534.zip FreeBSD-src-10da32144618e3bcc873be353d69670aff7c3534.tar.gz |
Add OpenBSD-style blowfish password hashing. This makes one less
gratuitous difference between us and our sister project.
This was given to me _ages_ ago. May apologies to Paul for the length
of time its taken me to commit.
Obtained from: Niels Provos <provos@physnet.uni-hamburg.de>/OpenBSD
Submitted by: Paul Herman <pherman@frenchfries.net>
Diffstat (limited to 'lib/libcrypt/crypt.h')
-rw-r--r-- | lib/libcrypt/crypt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libcrypt/crypt.h b/lib/libcrypt/crypt.h index 3544f89..b62bd8e 100644 --- a/lib/libcrypt/crypt.h +++ b/lib/libcrypt/crypt.h @@ -32,6 +32,7 @@ char *crypt_des(const char *pw, const char *salt); char *crypt_md5(const char *pw, const char *salt); +char *crypt_blowfish(const char *pw, const char *salt); extern void _crypt_to64(char *s, unsigned long v, int n); |