Changeset 1342


Ignore:
Timestamp:
04/02/08 16:39:06 (5 years ago)
Author:
spa1
Message:
  • Fixed function prototypes that were accidentally commented out a while back
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/traceanon/rijndael.h

    r838 r1342  
    9797typedef enum KeyLength_e KeyLength; 
    9898typedef enum State_e State; 
    99  
    10099/* 
    101100// Creates a Rijndael cipher object 
     
    126125        // keyLen    : Rijndael::Key16Bytes , Rijndael::Key24Bytes or Rijndael::Key32Bytes 
    127126        // initVector: initialization vector, you will usually use 0 here 
    128  
     127*/ 
    129128int rijndael_init(Mode mode, Direction dir, const UINT8 *key, KeyLength keyLen, UINT8 * initVector); 
    130129 
     130/* 
    131131  // Encrypts the input array (can be binary data) 
    132132        // The input array length must be a multiple of 16 bytes, the remaining part 
     
    136136        // outBuffer must be at least inputLen / 8 bytes long. 
    137137        // Returns the encrypted buffer length in BITS or an error code < 0 in case of error 
     138*/ 
    138139int blockEncrypt(const UINT8 *input, int inputLen, UINT8 *outBuffer); 
    139         // Encrypts the input array (can be binary data) 
     140 
     141/* 
     142        // Encrypts the input array (can be binary data) 
    140143        // The input array can be any length , it is automatically padded on a 16 byte boundary. 
    141144        // Input len is in BYTES! 
    142145        // outBuffer must be at least (inputLen + 16) bytes long 
    143146        // Returns the encrypted buffer length in BYTES or an error code < 0 in case of error 
     147*/ 
    144148int padEncrypt(const UINT8 *input, int inputOctets, UINT8 *outBuffer); 
    145         // Decrypts the input vector 
     149 
     150/* 
     151        // Decrypts the input vector 
    146152        // Input len is in BITS! 
    147153        // outBuffer must be at least inputLen / 8 bytes long 
    148154        // Returns the decrypted buffer length in BITS and an error code < 0 in case of error 
     155*/ 
    149156int blockDecrypt(const UINT8 *input, int inputLen, UINT8 *outBuffer); 
     157 
     158/* 
    150159        // Decrypts the input vector 
    151160        // Input len is in BYTES! 
    152161        // outBuffer must be at least inputLen bytes long 
    153162        // Returns the decrypted buffer length in BYTES and an error code < 0 in case of error 
     163*/ 
    154164int padDecrypt(const UINT8 *input, int inputOctets, UINT8 *outBuffer); 
    155 //protected: 
     165/*protected:*/ 
     166/* 
    156167void keySched(UINT8 key[_MAX_KEY_COLUMNS][4]); 
    157168void keyEncToDec(); 
    158169void r_encrypt(const UINT8 a[16], UINT8 b[16]); 
    159170void r_decrypt(const UINT8 a[16], UINT8 b[16]); 
    160 //}; 
    161171*/ 
     172/*};*/ 
    162173         
    163174#endif /* _RIJNDAEL_H_ */ 
Note: See TracChangeset for help on using the changeset viewer.