mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 18:05:40 +01:00
Add test suite for tinycrypt
Initially add a test for ECDH-part.
This commit is contained in:
parent
0e895727be
commit
7c5dc6b20a
@ -133,6 +133,7 @@ add_test_suite(poly1305)
|
|||||||
add_test_suite(shax)
|
add_test_suite(shax)
|
||||||
add_test_suite(ssl)
|
add_test_suite(ssl)
|
||||||
add_test_suite(timing)
|
add_test_suite(timing)
|
||||||
|
add_test_suite(tinycrypt)
|
||||||
add_test_suite(rsa)
|
add_test_suite(rsa)
|
||||||
add_test_suite(version)
|
add_test_suite(version)
|
||||||
add_test_suite(xtea)
|
add_test_suite(xtea)
|
||||||
|
2
tests/suites/test_suite_tinycrypt.data
Normal file
2
tests/suites/test_suite_tinycrypt.data
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Tinycrypt ECDH
|
||||||
|
test_ecdh:
|
35
tests/suites/test_suite_tinycrypt.function
Normal file
35
tests/suites/test_suite_tinycrypt.function
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/* BEGIN_HEADER */
|
||||||
|
|
||||||
|
#include "tinycrypt/ecc.h"
|
||||||
|
#include "tinycrypt/ecc_dh.h"
|
||||||
|
#include "tinycrypt/ecc_dsa.h"
|
||||||
|
|
||||||
|
/* END_HEADER */
|
||||||
|
|
||||||
|
/* BEGIN_DEPENDENCIES
|
||||||
|
* depends_on:MBEDTLS_USE_TINYCRYPT
|
||||||
|
* END_DEPENDENCIES
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* BEGIN_CASE depends_on:MBEDTLS_USE_TINYCRYPT */
|
||||||
|
void test_ecdh()
|
||||||
|
{
|
||||||
|
uint8_t private1[NUM_ECC_BYTES] = {0};
|
||||||
|
uint8_t private2[NUM_ECC_BYTES] = {0};
|
||||||
|
uint8_t public1[2*NUM_ECC_BYTES] = {0};
|
||||||
|
uint8_t public2[2*NUM_ECC_BYTES] = {0};
|
||||||
|
uint8_t secret1[NUM_ECC_BYTES] = {0};
|
||||||
|
uint8_t secret2[NUM_ECC_BYTES] = {0};
|
||||||
|
|
||||||
|
const struct uECC_Curve_t * curve = uECC_secp256r1();
|
||||||
|
|
||||||
|
TEST_ASSERT( uECC_make_key( public1, private1, curve ) != 0 );
|
||||||
|
TEST_ASSERT( uECC_make_key( public2, private2, curve ) != 0 );
|
||||||
|
|
||||||
|
TEST_ASSERT( uECC_shared_secret( public2, private1, secret1, curve ) != 0 );
|
||||||
|
|
||||||
|
TEST_ASSERT( uECC_shared_secret( public1, private2, secret2, curve ) != 0 );
|
||||||
|
|
||||||
|
TEST_ASSERT( memcmp( secret1, secret2, sizeof( secret1 ) ) == 0 );
|
||||||
|
}
|
||||||
|
/* END_CASE */
|
Loading…
Reference in New Issue
Block a user