X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/2e8eb64a72472bea4faba1cee5edde4fe3616808..cdb7e56a986c87b1ce82c69c871f2bc6d0447eb8:/rspit.c diff --git a/rspit.c b/rspit.c index cce4543..831dde7 100644 --- a/rspit.c +++ b/rspit.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: rspit.c,v 1.17 2001/05/07 17:33:19 mdw Exp $ + * $Id: rspit.c,v 1.19 2001/06/16 23:42:17 mdw Exp $ * * Spit out random numbers * @@ -30,6 +30,12 @@ /*----- Revision history --------------------------------------------------* * * $Log: rspit.c,v $ + * Revision 1.19 2001/06/16 23:42:17 mdw + * Typesetting fixes. + * + * Revision 1.18 2001/05/08 22:17:41 mdw + * New cipher Noekeon added. + * * Revision 1.17 2001/05/07 17:33:19 mdw * New Rijndael block sizes. * @@ -143,6 +149,7 @@ #include "idea-ofb.h" #include "cast128-ofb.h" #include "cast256-ofb.h" +#include "noekeon-ofb.h" #include "rijndael-ofb.h" #include "rijndael192-ofb.h" #include "rijndael256-ofb.h" @@ -164,6 +171,7 @@ #include "idea-counter.h" #include "cast128-counter.h" #include "cast256-counter.h" +#include "noekeon-counter.h" #include "rijndael-counter.h" #include "rijndael192-counter.h" #include "rijndael256-counter.h" @@ -212,6 +220,7 @@ extern gen generators[]; E(SQUARE, square) \ E(SAFER, safer) \ E(SAFERSK, safersk) \ + E(NOEKEON, noekeon) \ E(RIJNDAEL, rijndael) \ E(RIJNDAEL192, rijndael192) \ E(RIJNDAEL256, rijndael256) \ @@ -573,7 +582,11 @@ static grand *gen_bbs(unsigned i) */ const char *mt = - "120511284390135742513572142094334711443073194119732569353820828435640527418092392240366088035509890969913081816369160298961490135716255689660470370755013177656905237112577648090277537209936078171554274553448103698084782669252936352843649980105109850503830397166360721262431179505917248447259735253684659338653"; + "12051128439013574251357214209433471144307319411973256935382082" + "84356405274180923922403660880355098909699130818163691602989614" + "90135716255689660470370755013177656905237112577648090277537209" + "93607817155427455344810369808478266925293635284364998010510985" + "0503830397166360721262431179505917248447259735253684659338653"; /* --- Other things --- */