summaryrefslogtreecommitdiff
path: root/src/auth_algo.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2018-06-08 19:31:26 +0200
committerChristian Pointner <equinox@anytun.org>2018-06-08 19:31:26 +0200
commitfa83a5f29af84382724b6bb79436f2c6d032b579 (patch)
tree39ad6b766704186e7e115ae507e75c481d3b4583 /src/auth_algo.h
parentfix missing include in linux/tun.c (diff)
Add support for openssl 1.1.0.
Thanks to Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'src/auth_algo.h')
-rw-r--r--src/auth_algo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth_algo.h b/src/auth_algo.h
index 576d490..fc355ad 100644
--- a/src/auth_algo.h
+++ b/src/auth_algo.h
@@ -82,7 +82,7 @@ int auth_algo_check_tag(auth_algo_t* aa, key_derivation_t* kd, key_derivation_di
struct auth_algo_sha1_param_struct {
#if defined(USE_SSL_CRYPTO)
- HMAC_CTX ctx_;
+ HMAC_CTX *ctx_;
#elif defined(USE_NETTLE)
struct hmac_sha1_ctx ctx_;
#else // USE_GCRYPT is the default