diff options
author | Erwin Nindl <nine@wirdorange.org> | 2007-08-09 13:41:08 +0000 |
---|---|---|
committer | Erwin Nindl <nine@wirdorange.org> | 2007-08-09 13:41:08 +0000 |
commit | dce7b21c7ae5f97ce9f06fc00582e5bf3033c9c4 (patch) | |
tree | 2af3a1b0cce6d11f3ba6de6ac1d5413441542c28 /authAlgo.h | |
parent | request 390 (diff) |
* added key derivation functions
Diffstat (limited to 'authAlgo.h')
-rw-r--r-- | authAlgo.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |