Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Mar 2001 01:31:44 +0900
From:      "Akinori MUSHA" <knu@iDaemons.org>
To:        Mark Murray <markm@FreeBSD.org>
Cc:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   Re: cvs commit: src/secure/lib/libcrypt blowfish.c blowfish.h         crypt-blowfish.c src/lib/libcrypt Makefile crypt.3 crypt.c crypt.h
Message-ID:  <86n1asl11r.wl@archon.local.idaemons.org>
In-Reply-To: <200103111605.f2BG5hf26862@freefall.freebsd.org>
References:  <200103111605.f2BG5hf26862@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
At Sun, 11 Mar 2001 08:05:43 -0800 (PST),
Mark Murray wrote:
> markm       2001/03/11 08:05:43 PST
> 
>   Modified files:
>     lib/libcrypt         Makefile crypt.3 crypt.c crypt.h 
>   Added files:
>     secure/lib/libcrypt  blowfish.c blowfish.h crypt-blowfish.c 
>   Log:
>   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>

Neat!  Now we too can design and sell some blowfish T-shirts? ;)
Anyway, this is another great fruit from OpenBSD!

By the way, I found a possible typo:

Index: crypt.c
===================================================================
RCS file: /home/ncvs/src/lib/libcrypt/crypt.c,v
retrieving revision 1.19
diff -u -1 -0 -r1.19 crypt.c
--- crypt.c	2001/03/11 16:05:43	1.19
+++ crypt.c	2001/03/11 16:26:10
@@ -51,21 +51,21 @@
 #endif
 	{
 		"md5",
 		crypt_md5,
 		"$1$"
 	},
 #ifdef HAS_BLOWFISH
 	{
 		"blf",
 		crypt_blowfish,
-		"$2"
+		"$2$"
 	},
 #endif
 	{
 		NULL,
 		NULL
 	}
 };
 
 static int crypt_type = -1;
 

-- 
                     /
                    /__  __            Akinori.org / MUSHA.org
                   / )  )  ) )  /     FreeBSD.org / Ruby-lang.org
Akinori MUSHA aka / (_ /  ( (__(  @ iDaemons.org / and.or.jp

"We're only at home when we're on the run, on the wing, on the fly"

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86n1asl11r.wl>