blob: 51786ca9ec70c1bcce4f8f7f6898a1cc68a21b9a (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 | /*
 * Copyright (c) 2012 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */
#pragma once
#include <vector>
#include <Windows.h>
#define SECURITY_WIN32
#include <security.h>
#include <Wincrypt.h>
#include <Swiften/Base/API.h>
#include <Swiften/Base/SafeByteArray.h>
namespace Swift {
	class SWIFTEN_API SHA1 {
		public:
			SHA1();
			~SHA1();
			SHA1& update(const std::vector<unsigned char>& data);
			std::vector<unsigned char> getHash() const;
			static ByteArray getHash(const ByteArray& data);
			static ByteArray getHash(const SafeByteArray& data);
			ByteArray operator()(const SafeByteArray& data) {
				return getHash(data);
			}
			ByteArray operator()(const ByteArray& data) {
				return getHash(data);
			}
		private:
			SHA1& update(const unsigned char* data, size_t dataSize);
		private:
			HCRYPTHASH hash;
	};
}
 |