diff options
Diffstat (limited to 'Swiften/StringCodecs/HMACSHA1.h')
-rw-r--r-- | Swiften/StringCodecs/HMACSHA1.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Swiften/StringCodecs/HMACSHA1.h b/Swiften/StringCodecs/HMACSHA1.h new file mode 100644 index 0000000..698e4bc --- /dev/null +++ b/Swiften/StringCodecs/HMACSHA1.h @@ -0,0 +1,10 @@ +#pragma once + +namespace Swift { + class ByteArray; + + class HMACSHA1 { + public: + static ByteArray getResult(const ByteArray& key, const ByteArray& data); + }; +} |