catcrypt: Implement symmetric key-encapsulation and signature schemes.
[u/mdw/catacomb] / skipjack.h
index 9a0b3ca..25f8a28 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: skipjack.h,v 1.1 2000/07/15 15:39:33 mdw Exp $
+ * $Id: skipjack.h,v 1.3 2004/04/08 01:36:15 mdw Exp $
  *
  * The Skipjack block cipher
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: skipjack.h,v $
- * Revision 1.1  2000/07/15 15:39:33  mdw
- * The NSA's Skipjack block cipher.
- *
- */
-
 /*----- Notes on the Skipjack block cipher --------------------------------*
  *
  * Skipjack was designed by the NSA, as a type II algorithm to be used in the
@@ -75,7 +67,7 @@ extern const octet skipjack_keysz[];
 /*----- Data structures ---------------------------------------------------*/
 
 typedef struct skipjack_ctx {
-  octet k[10];
+  uint32 ka, kb, kc, kd, ke;
 } skipjack_ctx;
 
 /*----- Functions provided ------------------------------------------------*/