summaryrefslogtreecommitdiff
path: root/src/authAlgo.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2014-06-22 22:39:26 +0000
committerChristian Pointner <equinox@anytun.org>2014-06-22 22:39:26 +0000
commita80542f71b65d67328e42792b3bb88d6547fd693 (patch)
treec190166c97cbb426e85767ac3e7af0e806640b5a /src/authAlgo.h
parentimplemented cipher using nettle (not tested yet) (diff)
implemented auth algo using nettle (not tested yet)
Diffstat (limited to 'src/authAlgo.h')
-rw-r--r--src/authAlgo.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/authAlgo.h b/src/authAlgo.h
index d58646f..1e86407 100644
--- a/src/authAlgo.h
+++ b/src/authAlgo.h
@@ -102,8 +102,7 @@ private:
#if defined(USE_SSL_CRYPTO)
HMAC_CTX ctx_;
#elif defined(USE_NETTLE)
- // TODO: nettle
-
+ struct hmac_sha1_ctx ctx_;
#else // USE_GCRYPT is the default
gcry_md_hd_t handle_;
#endif