Skip to content

Commit

Permalink
Merge pull request #497 from wa5i/bugfix
Browse files Browse the repository at this point in the history
Fixed the compilation issue of Speed Test.
  • Loading branch information
InfoHunter authored Oct 8, 2023
2 parents f51e0c4 + 331adf0 commit 1e88e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ec/ec_elgamal_encode.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ size_t EC_ELGAMAL_MR_CIPHERTEXT_encode(EC_ELGAMAL_MR_CTX *ctx, unsigned char *ou
int EC_ELGAMAL_MR_CIPHERTEXT_decode(EC_ELGAMAL_MR_CTX *ctx, EC_ELGAMAL_MR_CIPHERTEXT *r,
unsigned char *in, size_t size)
{
int ret = 0, len;
int ret = 0, len = 0;
size_t point_len;
unsigned char *p = in, zero[128];
BN_CTX *bn_ctx = NULL;
Expand Down

0 comments on commit 1e88e75

Please sign in to comment.