diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-06-05 17:02:58 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-06-05 17:02:58 +0100 |
commit | 5658e4bfd4045bf31b2ba9f4e2a31066dc252d67 (patch) | |
tree | 9b3bee9cf8a4823d497362db5f4a4e64c588e555 /src/libcryptobox/cryptobox.h | |
parent | 0d4bbf0f00d4278e1dc10f205884871f4666b544 (diff) | |
download | rspamd-5658e4bfd4045bf31b2ba9f4e2a31066dc252d67.tar.gz rspamd-5658e4bfd4045bf31b2ba9f4e2a31066dc252d67.zip |
[Fix] Fix NIST signatures
Diffstat (limited to 'src/libcryptobox/cryptobox.h')
-rw-r--r-- | src/libcryptobox/cryptobox.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcryptobox/cryptobox.h b/src/libcryptobox/cryptobox.h index e5cdb8f6c..1d48c06e5 100644 --- a/src/libcryptobox/cryptobox.h +++ b/src/libcryptobox/cryptobox.h @@ -214,6 +214,7 @@ void rspamd_cryptobox_sign (guchar *sig, gsize *siglen_p, * @return true if signature is valid, false otherwise */ bool rspamd_cryptobox_verify (const guchar *sig, + gsize siglen, const guchar *m, gsize mlen, const rspamd_pk_t pk, |