Index: trunk/tools/traceanon/rijndael.h
===================================================================
--- trunk/tools/traceanon/rijndael.h	(revision 838)
+++ trunk/tools/traceanon/rijndael.h	(revision 1342)
@@ -97,5 +97,4 @@
 typedef enum KeyLength_e KeyLength;
 typedef enum State_e State;
-
 /*
 // Creates a Rijndael cipher object
@@ -126,7 +125,8 @@
 	// keyLen    : Rijndael::Key16Bytes , Rijndael::Key24Bytes or Rijndael::Key32Bytes
 	// initVector: initialization vector, you will usually use 0 here
-
+*/
 int rijndael_init(Mode mode, Direction dir, const UINT8 *key, KeyLength keyLen, UINT8 * initVector);
 
+/*
   // Encrypts the input array (can be binary data)
 	// The input array length must be a multiple of 16 bytes, the remaining part
@@ -136,28 +136,39 @@
 	// outBuffer must be at least inputLen / 8 bytes long.
 	// Returns the encrypted buffer length in BITS or an error code < 0 in case of error
+*/
 int blockEncrypt(const UINT8 *input, int inputLen, UINT8 *outBuffer);
-	// Encrypts the input array (can be binary data)
+
+/*
+ 	// Encrypts the input array (can be binary data)
 	// The input array can be any length , it is automatically padded on a 16 byte boundary.
 	// Input len is in BYTES!
 	// outBuffer must be at least (inputLen + 16) bytes long
 	// Returns the encrypted buffer length in BYTES or an error code < 0 in case of error
+*/
 int padEncrypt(const UINT8 *input, int inputOctets, UINT8 *outBuffer);
-	// Decrypts the input vector
+
+/*
+ 	// Decrypts the input vector
 	// Input len is in BITS!
 	// outBuffer must be at least inputLen / 8 bytes long
 	// Returns the decrypted buffer length in BITS and an error code < 0 in case of error
+*/
 int blockDecrypt(const UINT8 *input, int inputLen, UINT8 *outBuffer);
+
+/*
 	// Decrypts the input vector
 	// Input len is in BYTES!
 	// outBuffer must be at least inputLen bytes long
 	// Returns the decrypted buffer length in BYTES and an error code < 0 in case of error
+*/
 int padDecrypt(const UINT8 *input, int inputOctets, UINT8 *outBuffer);
-//protected:
+/*protected:*/
+/*
 void keySched(UINT8 key[_MAX_KEY_COLUMNS][4]);
 void keyEncToDec();
 void r_encrypt(const UINT8 a[16], UINT8 b[16]);
 void r_decrypt(const UINT8 a[16], UINT8 b[16]);
-//};
 */
+/*};*/
 	
 #endif /* _RIJNDAEL_H_ */
