Home | History | Annotate | Download | only in rijndael
      1 /*	$NetBSD: rijndael_local.h,v 1.4 2006/09/09 16:22:36 manu Exp $	*/
      2 
      3 /*	$KAME: rijndael_local.h,v 1.1.1.1 2001/08/08 09:56:27 sakane Exp $	*/
      4 
      5 /* the file should not be used from outside */
      6 typedef u_int8_t		BYTE;
      7 typedef u_int8_t		word8;
      8 typedef u_int16_t		word16;
      9 typedef u_int32_t		word32;
     10 
     11 #define MAXKC		RIJNDAEL_MAXKC
     12 #define MAXROUNDS	RIJNDAEL_MAXROUNDS
     13