Changeset 230 for trunk/include


Ignore:
Timestamp:
May 1, 2009, 12:30:57 AM (16 years ago)
Author:
katerina
Message:

Fix gcc 4.4 compiler warnings. Release 2.5.5.

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/rijndael-alg-fst.h

    r1 r230  
    3434int rijndaelDecrypt(word8 a[16], word8 b[16], word8 rk[MAXROUNDS+1][4][4], int ROUNDS);
    3535
     36#ifdef INTERMEDIATE_VALUE_KAT
     37int rijndaelEncryptRound(word8 a[4][4], word8 rk[MAXROUNDS+1][4][4], int ROUNDS, int rounds);
     38int rijndaelDecryptRound(word8 a[4][4], word8 rk[MAXROUNDS+1][4][4], int ROUNDS, int rounds);
     39#endif
     40
    3641/* SH_ENCRYPT */
    3742#endif
  • trunk/include/rijndael-api-fst.h

    r68 r230  
    9696int blockDecrypt(cipherInstance *cipher, keyInstance *key,
    9797                 RIJ_BYTE *input, int inputLen, RIJ_BYTE *outBuffer);
     98#ifdef INTERMEDIATE_VALUE_KAT
     99int cipherUpdateRounds(cipherInstance *cipher, keyInstance *key,
     100                       RIJ_BYTE *input, int inputLen, RIJ_BYTE *outBuffer, int rounds);
     101#endif
    98102
    99103/* SH_ENCRYPT */
Note: See TracChangeset for help on using the changeset viewer.