summaryrefslogtreecommitdiff
path: root/src/auth_algo.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2014-06-21 19:16:11 +0000
committerChristian Pointner <equinox@anytun.org>2014-06-21 19:16:11 +0000
commit7e12caca626bdbee7a351ab1fb3244b8c99224f3 (patch)
tree7fde35ded9ca6c51aa301822c2dcc08e03440a61 /src/auth_algo.h
parentimplemented cipher with nettle (not tested yet) (diff)
implemented auth tag with nettle (not tested yet)
Diffstat (limited to 'src/auth_algo.h')
-rw-r--r--src/auth_algo.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/auth_algo.h b/src/auth_algo.h
index e800c8e..b8a20b8 100644
--- a/src/auth_algo.h
+++ b/src/auth_algo.h
@@ -71,8 +71,7 @@ struct auth_algo_sha1_param_struct {
#if defined(USE_SSL_CRYPTO)
HMAC_CTX ctx_;
#elif defined(USE_NETTLE)
- // TOOD: nettle
-
+ struct hmac_sha1_ctx ctx_;
#else // USE_GCRYPT is the default
gcry_md_hd_t handle_;
#endif