diff --git a/test/test_ecdh.c b/test/test_ecdh.c index 31146f5..3b606db 100644 --- a/test/test_ecdh.c +++ b/test/test_ecdh.c @@ -1,3 +1,5 @@ +/* Copyright 2014, Kenneth MacKay. Licensed under the BSD 2-clause license. */ + #include "uECC.h" #include diff --git a/test/test_ecdsa.c b/test/test_ecdsa.c index 06e7e5f..46022ec 100644 --- a/test/test_ecdsa.c +++ b/test/test_ecdsa.c @@ -1,3 +1,5 @@ +/* Copyright 2014, Kenneth MacKay. Licensed under the BSD 2-clause license. */ + #include "uECC.h" #include diff --git a/uECC.c b/uECC.c index 388cedf..66f4815 100644 --- a/uECC.c +++ b/uECC.c @@ -1,3 +1,5 @@ +/* Copyright 2014, Kenneth MacKay. Licensed under the BSD 2-clause license. */ + #include "uECC.h" #ifndef uECC_PLATFORM diff --git a/uECC.h b/uECC.h index 0c149d9..0aa83ad 100644 --- a/uECC.h +++ b/uECC.h @@ -1,3 +1,5 @@ +/* Copyright 2014, Kenneth MacKay. Licensed under the BSD 2-clause license. */ + #ifndef _MICRO_ECC_H_ #define _MICRO_ECC_H_ @@ -32,7 +34,7 @@ uECC_asm_fast - Use GCC inline assembly optimized for maximum speed. */ #define uECC_secp192r1 2 #define uECC_secp256r1 3 #ifndef uECC_CURVE - #define uECC_CURVE uECC_secp256r1 + #define uECC_CURVE uECC_secp160r1 #endif /* uECC_SQUARE_FUNC - If enabled (defined as nonzero), this will cause a specific function to be used for (scalar) squaring