Some fix to compile run test check.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 5 Oct 2010 09:29:31 +0000 (09:29 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 5 Oct 2010 09:29:31 +0000 (09:29 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4404 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/sec/cipher/blowfish_test.c
bertos/sec/hash/md5.c
bertos/sec/hash/ripemd_test.c
bertos/sec/kdf/pbkdf2.h
bertos/sec/kdf/pbkdf2_test.c
bertos/sec/mac/hmac.h
bertos/sec/mac/hmac_test.c
test/run_tests.sh

index 5a2ba230f23c1a634a9ff32102c6c70764235e7f..ab60babc4774415513316b8d769c3f750dc88a24 100644 (file)
@@ -26,7 +26,7 @@
  * invalidate any other reasons why the executable file might be covered by
  * the GNU General Public License.
  *
- * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
  *
  * -->
  *
index 8e89907b40084979e8da6b2f77acf9c95624b3b8..306bacc029da9aa2fd84b1dadb71bced17d0b263 100644 (file)
@@ -37,7 +37,7 @@ static void byteReverse(uint32_t *buf, unsigned longs)
 static void MD5_begin(Hash *h)
 {
        MD5_Context *ctx = (MD5_Context *)h;
-       
+
     ctx->buf[0] = 0x67452301;
     ctx->buf[1] = 0xefcdab89;
     ctx->buf[2] = 0x98badcfe;
@@ -136,7 +136,7 @@ static uint8_t* MD5_final(struct Hash *h)
        PURGE(ctx->in);
        PURGE(ctx->bits);
 
-       return ctx->buf;
+       return (uint8_t *)ctx->buf;
 }
 
 
index 4fe5428c46eb210d0872a6e4fca14cb8f77327db..5c3c0512cdb6f9aa0725b8a0a3842319889749a5 100644 (file)
@@ -1,8 +1,9 @@
 
+#include "ripemd.h"
+
 #include <cfg/test.h>
 #include <cfg/debug.h>
 
-#include "RIPEMD.h"
 #include <string.h>
 
 int RIPEMD_testSetup(void)
index 43d44d189f6a189d204c57831ed67d689134ec75..3a313711665bd8cd4518395aa54bd6b4b78f8389 100644 (file)
@@ -32,7 +32,7 @@
  *
  * \brief PBKDF2 implementation
  * \author Giovanni Bajo <rasky@develer.com>
- * 
+ *
  */
 
 #ifndef SEC_KDF_PBKDF2_H
@@ -41,7 +41,7 @@
 #include <sec/kdf.h>
 #include <sec/mac.h>
 
-typedef struct 
+typedef struct
 {
        Kdf kdf;
        Mac *mac;
index 326817cbd8ff9ba4e8ca9c59e2076ee04dd03dca..f5f726f7d61230b21247b9db265a365d8876dcfd 100644 (file)
@@ -1,10 +1,53 @@
-#include <string.h>
-#include <cpu/detect.h>
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \brief PBKDF2 testsuite
+ * \author Giovanni Bajo <rasky@develer.com>
+ *
+ */
+
+
+#include "pbkdf2.h"
+
 #include <cfg/test.h>
 #include <cfg/debug.h>
+
 #include <sec/mac/hmac.h>
 #include <sec/hash/sha1.h>
-#include <sec/kdf/pbkdf2.h>
+
+#include <cpu/detect.h>
+
+#include <string.h>
+
 
 int PBKDF2_testSetup(void)
 {
@@ -19,25 +62,25 @@ int PBKDF2_testTearDown(void)
 
 int PBKDF2_testRun(void)
 {
-       Kdf *kdf = PBKDF2_stackinit(HMAC_stackinit(SHA1_stackinit()));
+       Kdf *kdf = PBKDF2_stackinit(hmac_stackinit(SHA1_stackinit()));
 
        uint8_t res[32];
-       
+
        PBKDF2_set_iterations(kdf, 1);
        kdf_begin(kdf, "password", 8, (const uint8_t*)"salt", 4);
        kdf_read(kdf, res, 20);
        ASSERT(memcmp(res, "\x0c\x60\xc8\x0f\x96\x1f\x0e\x71\xf3\xa9\xb5\x24\xaf\x60\x12\x06\x2f\xe0\x37\xa6", 20) == 0);
-       
+
        PBKDF2_set_iterations(kdf, 2);
        kdf_begin(kdf, "password", 8, (const uint8_t*)"salt", 4);
        kdf_read(kdf, res, 20);
        ASSERT(memcmp(res, "\xea\x6c\x01\x4d\xc7\x2d\x6f\x8c\xcd\x1e\xd9\x2a\xce\x1d\x41\xf0\xd8\xde\x89\x57", 20) == 0);
-       
+
        PBKDF2_set_iterations(kdf, 4096);
        kdf_begin(kdf, "password", 8, (const uint8_t*)"salt", 4);
        kdf_read(kdf, res, 20);
-       ASSERT(memcmp(res, "\x4b\x00\x79\x01\xb7\x65\x48\x9a\xbe\xad\x49\xd9\x26\xf7\x21\xd0\x65\xa4\x29\xc1", 20) == 0);       
-       
+       ASSERT(memcmp(res, "\x4b\x00\x79\x01\xb7\x65\x48\x9a\xbe\xad\x49\xd9\x26\xf7\x21\xd0\x65\xa4\x29\xc1", 20) == 0);
+
 #if CPU_X86
        // Too slow for an embedded system...
        PBKDF2_set_iterations(kdf, 16777216);
index 038c457590adcad65464aadecabfd2166d072441..8e0b35732d71f4757fba5eb78a851b0fa210a273 100644 (file)
@@ -40,6 +40,7 @@
 
 #include <sec/mac.h>
 #include <sec/hash.h>
+
 #include <alloca.h>
 
 typedef struct HmacContext
index a5edc460f31d9cdcb171c651321d3168e6e108d7..1e89aae22c8dfca1b95a5bdc9b032d1f8e9c9bd4 100644 (file)
@@ -173,4 +173,4 @@ int hmac_testRun(void)
        return 0;
 }
 
-TEST_MAIN(HMAC);
+TEST_MAIN(hmac);
index 9a479899a0a8d11a6fe08b7d0749bd59b7725ee5..9419451d5b913e70bb051fc22b3ae89d67446cba 100755 (executable)
@@ -65,7 +65,16 @@ SRC_LIST="
        bertos/io/kblock_ram.c
        bertos/io/kblock_posix.c
        bertos/io/kfile.c
+       bertos/sec/cipher.c
        bertos/sec/cipher/blowfish.c
+       bertos/sec/cipher/aes.c
+       bertos/sec/kdf/pbkdf1.c
+       bertos/sec/kdf/pbkdf2.c
+       bertos/sec/hash/sha1.c
+       bertos/sec/hash/md5.c
+       bertos/sec/hash/ripemd.c
+       bertos/sec/mac/hmac.c
+       bertos/sec/mac/omac.c
 "
 
 buildout='/dev/null'