From 6efccabd909ecee0607e10c57bb5e64162a19eb7 Mon Sep 17 00:00:00 2001 From: asterix Date: Thu, 20 Mar 2008 14:40:42 +0000 Subject: [PATCH] Comply headguard name to algo directory. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1202 38d2e660-2303-0410-9eaa-f027e97ec537 --- algo/crc.h | 6 +++--- algo/md2.h | 31 +++---------------------------- algo/randpool.h | 42 ++++-------------------------------------- algo/rotating_hash.h | 6 +++--- algo/tea.h | 6 +++--- 5 files changed, 16 insertions(+), 75 deletions(-) diff --git a/algo/crc.h b/algo/crc.h index 475e70d1..d6a1f45d 100644 --- a/algo/crc.h +++ b/algo/crc.h @@ -47,8 +47,8 @@ * \author Bernardo Innocenti */ -#ifndef CRC_H -#define CRC_H +#ifndef ALGO_CRC_H +#define ALGO_CRC_H #include @@ -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 */ diff --git a/algo/md2.h b/algo/md2.h index 44ba32c6..8d0edb79 100644 --- a/algo/md2.h +++ b/algo/md2.h @@ -44,33 +44,8 @@ * \author Daniele Basile */ -/*#* - *#* $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 #include @@ -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 */ diff --git a/algo/randpool.h b/algo/randpool.h index 18d13f4c..317ebe74 100644 --- a/algo/randpool.h +++ b/algo/randpool.h @@ -37,42 +37,8 @@ * \author Daniele Basile */ -/*#* - *#* $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 #include @@ -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 */ diff --git a/algo/rotating_hash.h b/algo/rotating_hash.h index 123f2d3b..c154af1d 100644 --- a/algo/rotating_hash.h +++ b/algo/rotating_hash.h @@ -43,8 +43,8 @@ */ -#ifndef ALGOS_ROTATING_H -#define ALGOS_ROTATING_H +#ifndef ALGO_ROTATING_H +#define ALGO_ROTATING_H #include @@ -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 diff --git a/algo/tea.h b/algo/tea.h index 6e4f935a..97318012 100644 --- a/algo/tea.h +++ b/algo/tea.h @@ -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 @@ -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 */ -- 2.25.1