X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/03f996bd8a0d6391518979cdab3dbe38cba0bf83..9e5602f0603b771fdda16731ab5bf6e460fe8795:/src/check.c diff --git a/src/check.c b/src/check.c index 1d1eba8..7e61433 100644 --- a/src/check.c +++ b/src/check.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: check.c,v 1.2 1997/08/04 10:24:20 mdw Exp $ + * $Id: check.c,v 1.5 1997/09/26 09:14:58 mdw Exp $ * * Check validity of requests * @@ -29,6 +29,18 @@ /*----- Revision history --------------------------------------------------* * * $Log: check.c,v $ + * Revision 1.5 1997/09/26 09:14:58 mdw + * Merged blowfish branch into trunk. + * + * Revision 1.4.2.1 1997/09/26 09:08:01 mdw + * Use the Blowfish encryption algorithm instead of IDEA. This is partly + * because I prefer Blowfish (without any particularly strong evidence) but + * mainly because IDEA is patented and Blowfish isn't. + * + * Revision 1.4 1997/08/07 09:52:05 mdw + * (Log entry for previous version is bogus.) Added support for multiple + * servers. + * * Revision 1.2 1997/08/04 10:24:20 mdw * Sources placed under CVS control. * @@ -64,11 +76,12 @@ /* --- Local headers --- */ #include "become.h" +#include "blowfish.h" #include "config.h" #include "crypt.h" -#include "idea.h" #include "lexer.h" #include "name.h" +#include "netg.h" #include "rule.h" #include "parser.h" #include "tx.h" @@ -128,14 +141,14 @@ static int check__ask(request *rq, struct sockaddr_in *serv, size_t n_serv) { int fd; unsigned char crq[crq_size]; - unsigned char sk[IDEA_KEYSIZE]; + unsigned char sk[BLOWFISH_KEYSIZE]; time_t t; pid_t pid; /* --- First, build the encrypted request packet --- */ { - unsigned char k[IDEA_KEYSIZE]; + unsigned char k[BLOWFISH_KEYSIZE]; FILE *fp; /* --- Read in the encryption key --- */ @@ -521,6 +534,7 @@ int check(request *rq) userdb_init(); userdb_local(); userdb_yp(); + netg_init(); name_init(); rule_init(); lexer_scan(fp);