summaryrefslogtreecommitdiff
path: root/authAlgo.h
diff options
context:
space:
mode:
authorErwin Nindl <nine@wirdorange.org>2007-08-09 13:41:08 +0000
committerErwin Nindl <nine@wirdorange.org>2007-08-09 13:41:08 +0000
commitdce7b21c7ae5f97ce9f06fc00582e5bf3033c9c4 (patch)
tree2af3a1b0cce6d11f3ba6de6ac1d5413441542c28 /authAlgo.h
parentrequest 390 (diff)
* added key derivation functions
Diffstat (limited to 'authAlgo.h')
-rw-r--r--authAlgo.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/authAlgo.h b/authAlgo.h
index 2c420e2..7c7ca6d 100644
--- a/authAlgo.h
+++ b/authAlgo.h
@@ -49,4 +49,12 @@ public:
auth_tag_t calc(const Buffer& buf);
};
+
+// HMAC_SHA1
+class HmacAuthAlgo : public AuthAlgo
+{
+public:
+ auth_tag_t calc(const Buffer& buf);
+};
+
#endif