Comply headguard name to algo directory.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 20 Mar 2008 14:40:42 +0000 (14:40 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 20 Mar 2008 14:40:42 +0000 (14:40 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1202 38d2e660-2303-0410-9eaa-f027e97ec537

algo/crc.h
algo/md2.h
algo/randpool.h
algo/rotating_hash.h
algo/tea.h

index 475e70d14a5ef56aa941e17f200c5eb561029c45..d6a1f45de21ca688c7b83615d3287b15a85a4a9a 100644 (file)
@@ -47,8 +47,8 @@
  * \author Bernardo Innocenti <bernie@develer.com>
  */
 
-#ifndef CRC_H
-#define CRC_H
+#ifndef ALGO_CRC_H
+#define ALGO_CRC_H
 
 #include <cfg/compiler.h>
 
@@ -99,4 +99,4 @@ extern uint16_t crc16(uint16_t crc, const void *buf, size_t len);
 }
 #endif /* __cplusplus */
 
-#endif /* CRC_H */
+#endif /* ALGO_CRC_H */
index 44ba32c6898a27b7d718f99acf93ed4327c9cb4c..8d0edb79fb6f82671f3823571d938f74f3219c01 100644 (file)
  * \author Daniele Basile <asterix@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.7  2007/02/15 13:29:49  asterix
- *#* Add MD2_DIGEST_LEN macro.
- *#*
- *#* Revision 1.6  2007/02/02 18:15:31  asterix
- *#* Add function MD2_test. Fix bug in md2_update function.
- *#*
- *#* Revision 1.5  2007/02/02 15:37:45  asterix
- *#* Change md2_end prototype. Remove a unneeded memcpy in md2_end. Add comments.
- *#*
- *#* Revision 1.4  2007/01/31 13:53:36  asterix
- *#* Define COMPUTE_ARRAY_LEN.
- *#*
- *#* Revision 1.3  2007/01/31 11:16:48  asterix
- *#* Defined constants for algorithm compute
- *#*
- *#* Revision 1.2  2007/01/30 17:31:44  asterix
- *#* Add function prototypes.
- *#*
- *#* Revision 1.1  2007/01/30 15:53:26  batt
- *#* Add first md2 skel.
- *#*
- *#*/
-
-#ifndef ALGOS_MD2_H
-#define ALGOS_MD2_H
+#ifndef ALGO_MD2_H
+#define ALGO_MD2_H
 
 #include <cfg/compiler.h>
 #include <appconfig.h>
@@ -95,4 +70,4 @@ void md2_update(Md2Context *context, const void *block_in, size_t block_len);
 uint8_t *md2_end(Md2Context *context);
 bool md2_test(void);
 
-#endif /* ALGOS_MD2_H */
+#endif /* ALGO_MD2_H */
index 18d13f4cfe846695ece6b8982a7fbabdf1c29616..317ebe7435dc7d7c4958d84d68b6b52277c9ec44 100644 (file)
  * \author Daniele Basile <asterix@develer.com>
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.11  2007/02/15 13:54:26  asterix
- *#* Rename randpool_getN in randpool_get. Fix bug in randpool_get.
- *#*
- *#* Revision 1.10  2007/02/15 13:40:42  asterix
- *#* Fix bug in randpool_add and randpool_strir.
- *#*
- *#* Revision 1.9  2007/02/13 09:57:12  asterix
- *#* Add directive #if in struct EntropyPool, and remove #else in randpool_add.
- *#*
- *#* Revision 1.8  2007/02/12 09:47:39  asterix
- *#* Remove randpool_save. Add randpool_pool.
- *#*
- *#* Revision 1.6  2007/02/09 15:49:54  asterix
- *#* Fix bug in randpool_stir and randpool_add. Typos.
- *#*
- *#* Revision 1.5  2007/02/09 09:24:38  asterix
- *#* Typos. Add data_len in randpool_add and n_byte in randpool_push pototypes.
- *#*
- *#* Revision 1.4  2007/02/08 17:18:01  asterix
- *#* Write add_data and stir function. Typos
- *#*
- *#* Revision 1.3  2007/02/08 14:25:56  asterix
- *#* Typos.
- *#*
- *#* Revision 1.2  2007/02/08 11:53:03  asterix
- *#* Add EntropyPool struct. Typos.
- *#*
- *#* Revision 1.1  2007/02/08 11:13:41  asterix
- *#* Add function prototypes.
- *#*
- *#*/
-
-#ifndef RANDPOOL_H 
-#define RANDPOOL_H
+#ifndef ALGO_RANDPOOL_H
+#define ALGO_RANDPOOL_H
 
 #include <cfg/compiler.h>
 #include <appconfig.h>
@@ -81,7 +47,7 @@
 /**
  * Sturct data of entropy pool.
  */
-typedef struct EntropyPool 
+typedef struct EntropyPool
 {
        size_t entropy;                                  ///< Actual value of entropy (byte).
        size_t pos_add;                                  ///< Number of byte  idd in entropy pool.
@@ -103,4 +69,4 @@ size_t randpool_size(EntropyPool *pool);
 void randpool_get(EntropyPool *pool, void *data, size_t n_byte);
 uint8_t *randpool_pool(EntropyPool *pool);
 
-#endif /* RANDPOOL_H */
+#endif /* ALGO_RANDPOOL_H */
index 123f2d3ba30cf184cd7c2c5daa9ad45ef94fcc74..c154af1d33a8b3f28d57acb7ca28d7b1d934e610 100644 (file)
@@ -43,8 +43,8 @@
  */
 
 
-#ifndef ALGOS_ROTATING_H
-#define ALGOS_ROTATING_H
+#ifndef ALGO_ROTATING_H
+#define ALGO_ROTATING_H
 
 #include <cfg/compiler.h>
 
@@ -79,4 +79,4 @@ INLINE void rotating_update(const void *_buf, size_t len, rotating_t *rot)
 }
 
 
-#endif // ALGOS_ROTATING_H
+#endif // ALGO_ROTATING_H
index 6e4f935a81ae71452542822349bfc7afb94f49e2..9731801233389a7b302c0fae3ed85dea6c4b0005 100644 (file)
@@ -39,8 +39,8 @@
  * http://www.cl.cam.ac.uk/ftp/users/djw3/tea.ps.
  */
 
-#ifndef ALGOS_TEA_H
-#define ALGOS_TEA_H
+#ifndef ALGO_TEA_H
+#define ALGO_TEA_H
 
 #include <cfg/compiler.h>
 
@@ -53,5 +53,5 @@
 void tea_enc(void *_v, void *_k);
 void tea_dec(void *_v, void *_k);
 
-#endif /* ALGOS_TEA_H */
+#endif /* ALGO_TEA_H */