From b17f4ed54206a7d04c8da024c1b1e5de2056a877 Mon Sep 17 00:00:00 2001 From: mdw Date: Sun, 29 Apr 2001 18:11:32 +0000 Subject: [PATCH] New block ciphers. --- rspit.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/rspit.c b/rspit.c index f4083f6..7896ead 100644 --- a/rspit.c +++ b/rspit.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: rspit.c,v 1.15 2001/04/19 18:26:13 mdw Exp $ + * $Id: rspit.c,v 1.16 2001/04/29 18:11:32 mdw Exp $ * * Spit out random numbers * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: rspit.c,v $ + * Revision 1.16 2001/04/29 18:11:32 mdw + * New block ciphers. + * * Revision 1.15 2001/04/19 18:26:13 mdw * Use the new MAC keysize names. * @@ -128,6 +131,7 @@ #include "des3-ofb.h" #include "rc2-ofb.h" #include "rc5-ofb.h" +#include "mars-ofb.h" #include "skipjack-ofb.h" #include "tea-ofb.h" #include "xtea-ofb.h" @@ -137,6 +141,8 @@ #include "cast128-ofb.h" #include "cast256-ofb.h" #include "rijndael-ofb.h" +#include "safer-ofb.h" +#include "safersk-ofb.h" #include "square-ofb.h" #include "serpent-ofb.h" @@ -144,6 +150,7 @@ #include "des3-counter.h" #include "rc2-counter.h" #include "rc5-counter.h" +#include "mars-counter.h" #include "skipjack-counter.h" #include "tea-counter.h" #include "xtea-counter.h" @@ -153,6 +160,8 @@ #include "cast128-counter.h" #include "cast256-counter.h" #include "rijndael-counter.h" +#include "safer-counter.h" +#include "safersk-counter.h" #include "square-counter.h" #include "serpent-counter.h" @@ -184,6 +193,7 @@ extern gen generators[]; E(DES3, des3) \ E(RC2, rc2) \ E(RC5, rc5) \ + E(MARS, mars) \ E(SKIPJACK, skipjack) \ E(TEA, tea) \ E(XTEA, xtea) \ @@ -193,6 +203,8 @@ extern gen generators[]; E(CAST128, cast128) \ E(CAST256, cast256) \ E(SQUARE, square) \ + E(SAFER, safer) \ + E(SAFERSK, safersk) \ E(RIJNDAEL, rijndael) \ E(SERPENT, serpent) -- 2.11.0