blob: 8072c0d90077078e9f4c6a05c3fd4a7e9526a4de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2013 Remko Tronçon
* Licensed under the GNU General Public License.
* See the COPYING file for more information.
*/
#pragma once
#include <Swiften/Crypto/CryptoProvider.h>
#include <Swiften/Base/Override.h>
namespace Swift {
class CommonCryptoCryptoProvider : public CryptoProvider {
public:
CommonCryptoCryptoProvider();
~CommonCryptoCryptoProvider();
virtual Hash* createSHA1() SWIFTEN_OVERRIDE;
virtual Hash* createMD5() SWIFTEN_OVERRIDE;
virtual Hash* createHMACSHA1(const SafeByteArray& key) SWIFTEN_OVERRIDE;
virtual Hash* createHMACSHA1(const ByteArray& key) SWIFTEN_OVERRIDE;
virtual bool isMD5AllowedForCrypto() const SWIFTEN_OVERRIDE;
};
}
|