Skip to content

Commit

Permalink
clang-tidy + clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
petertorelli committed Jul 8, 2022
1 parent d0b6eaf commit 0bf9222
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/selfhosted/profile/psa_crypto_th_api/th_ecdsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ th_ecdsa_sign(
unsigned char *p_hash, // input: sha256 digest
unsigned int hlen, // input: length of digest in bytes
unsigned char *p_sig, // output: signature
const unsigned int *p_slen // in/out: input=MAX slen, output=resultant
unsigned int *p_slen // in/out: input=MAX slen, output=resultant
)
{
ecdsa_p256_context *p_ecdsa = (ecdsa_p256_context *)p_context;
Expand Down
2 changes: 1 addition & 1 deletion profile/ee_ecdsa.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ ee_status_t th_ecdsa_sign(
unsigned char *p_hash, // input: sha256 digest
unsigned int hlen, // input: length of digest in bytes
unsigned char *p_sig, // output: signature
const unsigned int *p_slen // in/out: input=MAX slen, output=resultant
unsigned int *p_slen // in/out: input=MAX slen, output=resultant
);

/**
Expand Down

0 comments on commit 0bf9222

Please sign in to comment.