Skip to content

Commit

Permalink
fix merge conflict.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed Aug 9, 2024
1 parent 6fde832 commit d01bcb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cp/relic_cp_rsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -785,9 +785,9 @@ int cp_rsa_dec(uint8_t *out, size_t *out_len, const uint8_t *in, size_t in_len,
int cp_rsa_sig(uint8_t *sig, size_t *sig_len, const uint8_t *msg,
size_t msg_len, int hash, const rsa_t prv) {
bn_t m, eb;
size_t size, pad_len;
int result = RLC_OK;
size_t pad_len, size;
uint8_t h[RLC_MD_LEN];
int result = RLC_OK;

if (prv == NULL || msg_len < 0) {
return RLC_ERR;
Expand Down

0 comments on commit d01bcb2

Please sign in to comment.