diff options
Diffstat (limited to 'Swiften/StringCodecs/HMACSHA1.h')
-rw-r--r-- | Swiften/StringCodecs/HMACSHA1.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Swiften/StringCodecs/HMACSHA1.h b/Swiften/StringCodecs/HMACSHA1.h deleted file mode 100644 index 0463e64..0000000 --- a/Swiften/StringCodecs/HMACSHA1.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#pragma once - -#include <Swiften/Base/ByteArray.h> -#include <Swiften/Base/SafeByteArray.h> - -namespace Swift { - class HMACSHA1 { - public: - static ByteArray getResult(const SafeByteArray& key, const ByteArray& data); - static ByteArray getResult(const ByteArray& key, const ByteArray& data); - }; -} |