blob: 29ec78bf796f51da5bbcfcb25ff65ad1f08767d4 (
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 Isode Limited.
* All rights reserved.
* See the COPYING file 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;
};
}
|