Date: Thu, 25 Oct 2001 14:53:18 +0100 (BST) From: Gavin Atkinson <gavin@ury.york.ac.uk> To: <questions@freebsd.org> Subject: Help: after 4.4 upgrade, blowfish fails Message-ID: <Pine.BSF.4.33.0110251448560.15638-100000@ury.york.ac.uk>
next in thread | raw e-mail | index | archive | help
Hi all, Bit of an emergency here: Our authentication database uses blowfish encrypted passwords, and since the 4.4 upgrade yestarday, blowfish encryption seems to fail. Usual process: cvsup, buildworld,kernel, installkernel, reboot, installworld in single user, mergemaster, reboot. But now crypt can't do blowfish passwords, which worked before. The following code works with MD5 encryption (replacing the $2$ with $1$), but returns just a single colon with my install of 4.4-RELEASE. Any suggestions? -------------------------------- #include <sys/types.h> #include <unistd.h> #include <stdio.h> void main (void) { printf ( "%s\n", crypt ( "foo", "$2$fdfdyskf$")); } -------------------------------- Thanks in advance, Gavin -- "Experience is directly proportional to the value of equipment destroyed." -- Carolyn Scheppner - - Gavin Atkinson - Head Of Computing - University Radio York - - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.33.0110251448560.15638-100000>