summaryrefslogtreecommitdiffstats
path: root/src/libcryptobox/cryptobox.h
diff options
context:
space:
mode:
authorLeftTry <lerest.go@gmail.com>2024-07-27 14:25:54 +0500
committerLeftTry <lerest.go@gmail.com>2024-07-27 14:25:54 +0500
commitd31243ddf014c95543d5d05e1fc85d2cd07dc381 (patch)
treed096a1163e3e915f1b150eddc76cbf8f00ef1160 /src/libcryptobox/cryptobox.h
parent7d6622aeaa07b530e4777a202a086ac3a7be1b7d (diff)
downloadrspamd-d31243ddf014c95543d5d05e1fc85d2cd07dc381.tar.gz
rspamd-d31243ddf014c95543d5d05e1fc85d2cd07dc381.zip
[Feature] Add support for OpenSSL 3.0 for DKIM
Diffstat (limited to 'src/libcryptobox/cryptobox.h')
-rw-r--r--src/libcryptobox/cryptobox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcryptobox/cryptobox.h b/src/libcryptobox/cryptobox.h
index 54ef48c9a..f11d31994 100644
--- a/src/libcryptobox/cryptobox.h
+++ b/src/libcryptobox/cryptobox.h
@@ -209,7 +209,7 @@ void rspamd_cryptobox_sign(unsigned char *sig, unsigned long long *siglen_p,
void rspamd_cryptobox_sign_compat(int nid, unsigned char *sig, unsigned long long *siglen_p,
const unsigned char *m, gsize mlen,
- struct evp_pkey_st *sec_key,
+ struct evp_pkey_st *sec_key, int ktype,
enum rspamd_cryptobox_mode mode);
/**
@@ -233,7 +233,7 @@ bool rspamd_cryptobox_verify_compat(int nid,
gsize siglen,
const unsigned char *m,
gsize mlen,
- struct evp_pkey_st *pub_key,
+ struct evp_pkey_st *pub_key, int ktype,
enum rspamd_cryptobox_mode mode);
/**