From 10da32144618e3bcc873be353d69670aff7c3534 Mon Sep 17 00:00:00 2001 From: markm Date: Sun, 11 Mar 2001 16:05:43 +0000 Subject: 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 /OpenBSD Submitted by: Paul Herman --- lib/libcrypt/crypt.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/libcrypt/crypt.h') 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); -- cgit v1.1