Update ecdh_example.c

This commit is contained in:
kokke
2018-05-17 01:07:00 +02:00
committed by GitHub
parent 58c937f039
commit 4218dcda6d

View File

@@ -119,8 +119,8 @@ static void ecdh_demo(void)
} }
/* WARNING: This is not working correctly. ECDSA is not working... */
void ecdsa_demo() void ecdsa_broken()
{ {
static uint8_t prv[ECC_PRV_KEY_SIZE]; static uint8_t prv[ECC_PRV_KEY_SIZE];
static uint8_t pub[ECC_PUB_KEY_SIZE]; static uint8_t pub[ECC_PUB_KEY_SIZE];
@@ -163,7 +163,7 @@ int main(int argc, char* argv[])
for (i = 0; i < ncycles; ++i) for (i = 0; i < ncycles; ++i)
{ {
ecdh_demo(); ecdh_demo();
ecdsa_demo(); ecdsa_broken();
} }
return 0; return 0;