Skip to content

Commit

Permalink
Fixed the compilation issue of Speed Test.
Browse files Browse the repository at this point in the history
  • Loading branch information
wa5i committed Sep 30, 2023
1 parent a571c9c commit 331adf0
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 331adf0

Please sign in to comment.