Skip to content

Commit

Permalink
EVP_chacha20: fix constness
Browse files Browse the repository at this point in the history
  • Loading branch information
smx-smx committed Apr 9, 2024
1 parent 52ce25c commit e593033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xzre.h
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ typedef struct __attribute__((packed)) {
int *outl, const unsigned char *in, int inl);
int (*EVP_DecryptFinal_ex)(EVP_CIPHER_CTX *ctx, unsigned char *outm, int *outl);
void (*EVP_CIPHER_CTX_free)(EVP_CIPHER_CTX *ctx);
EVP_CIPHER *(*EVP_chacha20)(void);
const EVP_CIPHER *(*EVP_chacha20)(void);
RSA *(*RSA_new)(void);
BIGNUM *(*BN_dup)(const BIGNUM *from);
BIGNUM (*BN_bin2bn)(const unsigned char *s, int len, BIGNUM *ret);
Expand Down

0 comments on commit e593033

Please sign in to comment.