Fix compilation errors when building sign_with_k test function

Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
This commit is contained in:
Andrzej Kurek 2020-12-07 07:01:22 -05:00
parent bef771bf50
commit 3e80b1a657
4 changed files with 8 additions and 9 deletions

View file

@ -115,7 +115,7 @@ int uECC_sign(const uint8_t *p_private_key, const uint8_t *p_message_hash,
* Refer to uECC_sign() function for real applications.
*/
int uECC_sign_with_k(const uint8_t *private_key, const uint8_t *message_hash,
unsigned int hash_size, uECC_word_t *k, uint8_t *signature)
unsigned int hash_size, uECC_word_t *k, uint8_t *signature);
#endif
/**