rijndael-api-fst.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * rijndael-api-fst.h   v2.4   April '2000
  3.  *
  4.  * Optimised ANSI C code
  5.  *
  6.  * #define INTERMEDIATE_VALUE_KAT to generate the Intermediate Value Known Answer Test.
  7.  */
  8. #ifndef __RIJNDAEL_API_FST_H
  9. #define __RIJNDAEL_API_FST_H
  10. #include <stdio.h>
  11. #include "rijndael-alg-fst.h"
  12. /*  Defines:
  13. Add any additional defines you need
  14. */
  15. #define     DIR_ENCRYPT           0 /*  Are we encrpyting?  */
  16. #define     DIR_DECRYPT           1 /*  Are we decrpyting?  */
  17. #define     MODE_ECB              1 /*  Are we ciphering in ECB mode?   */
  18. #define     MODE_CBC              2 /*  Are we ciphering in CBC mode?   */
  19. #define     MODE_CFB1             3 /*  Are we ciphering in 1-bit CFB mode? */
  20. #define     TRUE                  1
  21. #define     FALSE                 0
  22. #define     BITSPERBLOCK        128 /* Default number of bits in a cipher block */
  23. /*  Error Codes - CHANGE POSSIBLE: inclusion of additional error codes  */
  24. #define     BAD_KEY_DIR          -1 /*  Key direction is invalid, e.g., unknown value */
  25. #define     BAD_KEY_MAT          -2 /*  Key material not of correct length */
  26. #define     BAD_KEY_INSTANCE     -3 /*  Key passed is not valid */
  27. #define     BAD_CIPHER_MODE      -4 /*  Params struct passed to cipherInit invalid */
  28. #define     BAD_CIPHER_STATE     -5 /*  Cipher in wrong state (e.g., not initialized) */
  29. #define     BAD_BLOCK_LENGTH     -6
  30. #define     BAD_CIPHER_INSTANCE  -7
  31. #define     BAD_DATA             -8 /*  Data contents are invalid, e.g., invalid padding */
  32. #define     BAD_OTHER            -9 /*  Unknown error */
  33. /*  CHANGE POSSIBLE:  inclusion of algorithm specific defines  */
  34. #define     MAX_KEY_SIZE         64 /* # of ASCII char's needed to represent a key */
  35. #define     MAX_IV_SIZE          16 /* # bytes needed to represent an IV  */
  36. /*  Typedefs:
  37. Typedef'ed data storage elements.  Add any algorithm specific 
  38. parameters at the bottom of the structs as appropriate.
  39. */
  40. typedef unsigned char   BYTE;
  41. /*  The structure for key information */
  42. typedef struct {
  43.     BYTE  direction;                /* Key used for encrypting or decrypting? */
  44.     int   keyLen;                   /* Length of the key  */
  45.     char  keyMaterial[MAX_KEY_SIZE+1];  /* Raw key data in ASCII, e.g., user input or KAT values */
  46.         /*  The following parameters are algorithm dependent, replace or add as necessary  */
  47. int   ROUNDS;                   /* key-length-dependent number of rounds */
  48.     int   blockLen;                 /* block length */
  49.     word8 keySched[MAXROUNDS+1][4][4]; /* key schedule */
  50. } keyInstance;
  51. /*  The structure for cipher information */
  52. typedef struct {                    /* changed order of the components */
  53.     BYTE  mode;                     /* MODE_ECB, MODE_CBC, or MODE_CFB1 */
  54.     BYTE  IV[MAX_IV_SIZE];          /* A possible Initialization Vector for ciphering */
  55.         /*  Add any algorithm specific parameters needed here  */
  56.     int   blockLen;                 /* Sample: Handles non-128 bit block sizes (if available) */
  57. } cipherInstance;
  58. /*  Function prototypes  */
  59. /*  CHANGED: nothing
  60. TODO: implement the following extensions to setup 192-bit and 256-bit block lengths:
  61.         makeKeyEx():    parameter blockLen added
  62.                         -- this parameter is absolutely necessary if you want to
  63.                         setup the round keys in a variable block length setting 
  64.     cipherInitEx(): parameter blockLen added (for obvious reasons)
  65.  */
  66. int makeKey(keyInstance *key, BYTE direction, int keyLen, char *keyMaterial);
  67. int cipherInit(cipherInstance *cipher, BYTE mode, char *IV);
  68. int blockEncrypt(cipherInstance *cipher, keyInstance *key,
  69.         BYTE *input, int inputLen, BYTE *outBuffer);
  70. int padEncrypt(cipherInstance *cipher, keyInstance *key,
  71. BYTE *input, int inputOctets, BYTE *outBuffer);
  72. int blockDecrypt(cipherInstance *cipher, keyInstance *key,
  73.         BYTE *input, int inputLen, BYTE *outBuffer);
  74. int padDecrypt(cipherInstance *cipher, keyInstance *key,
  75. BYTE *input, int inputOctets, BYTE *outBuffer);
  76. #ifdef INTERMEDIATE_VALUE_KAT
  77. int cipherUpdateRounds(cipherInstance *cipher, keyInstance *key,
  78.         BYTE *input, int inputLen, BYTE *outBuffer, int Rounds);
  79. #endif /* INTERMEDIATE_VALUE_KAT */
  80. #endif /*  __RIJNDAEL_API_FST_H */