mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch 'wpk/disable-openssl-siphash' into 'master'
Disable OpenSSL siphash. See merge request isc-projects/bind9!2965
This commit is contained in:
commit
64c7bb3552
1 changed files with 6 additions and 1 deletions
|
|
@ -17,7 +17,12 @@
|
|||
#include <isc/util.h>
|
||||
#include <isc/siphash.h>
|
||||
|
||||
#if HAVE_OPENSSL_SIPHASH
|
||||
/*
|
||||
* Creation of EVP_MD_CTX and EVP_PKEY is quite expensive, until
|
||||
* we fix the code to reuse the context and key we'll use our own
|
||||
* implementation of siphash.
|
||||
*/
|
||||
#if 0 /* HAVE_OPENSSL_SIPHASH */
|
||||
#include <openssl/evp.h>
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue