Change parser strings to include length.
[bertos.git] / bertos / algo / tea.c
index f67d4c5e7ffd9df6e0e1c3f57d13d2237910b156..5db72cfeb0ea1df15eee011910a8c440f6c78b66 100644 (file)
@@ -32,7 +32,6 @@
  *
  * \brief TEA Tiny Encription Algorith functions (implementation).
  *
- * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
  *
  * The Tiny Encryption Algorithm (TEA) by David Wheeler and Roger Needham
  * 1/2 ~ 0.618034 multiplied by 2^32).
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.2  2007/09/19 16:23:27  batt
- *#* Fix doxygen warnings.
- *#*
- *#* Revision 1.1  2007/06/07 09:13:40  batt
- *#* Add TEA enc/decryption algorithm.
- *#*
- *#* Revision 1.1  2007/01/10 17:30:10  batt
- *#* Add cryptographic routines.
- *#*
- *#*/
-
 #include "tea.h"
-#include <mware/byteorder.h>
+#include <cpu/byteorder.h>
 
 static uint32_t tea_func(uint32_t *in, uint32_t *sum, uint32_t *k)
 {