-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhmac.cc
More file actions
67 lines (52 loc) · 1.7 KB
/
Copy pathhmac.cc
File metadata and controls
67 lines (52 loc) · 1.7 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <string>
#include "botan/botan.h"
#include "sanity.hh"
#include "hmac.hh"
#include "vocab.hh"
#include "constants.hh"
chained_hmac::chained_hmac(netsync_session_key const & session_key) :
hmac_length(constants::sha1_digest_length),
key(reinterpret_cast<Botan::byte const *>(session_key().data()), session_key().size())
{
chain_val.assign(hmac_length, 0x00);
}
void
chained_hmac::set_key(netsync_session_key const & session_key)
{
key = Botan::SymmetricKey(reinterpret_cast<Botan::byte const *>(session_key().data()),
session_key().size());
}
std::string
chained_hmac::process(std::string const & str, size_t pos, size_t n)
{
I(pos < str.size());
if (n == std::string::npos)
n = str.size() - pos;
I(pos + n <= str.size());
Botan::Pipe p(new Botan::MAC_Filter("HMAC(SHA-1)", key,
constants::sha1_digest_length));
p.start_msg();
p.write(chain_val);
p.write(reinterpret_cast<Botan::byte const *>(str.data() + pos), n);
p.end_msg();
chain_val = p.read_all_as_string();
I(chain_val.size() == constants::sha1_digest_length);
return chain_val;
}
std::string
chained_hmac::process(string_queue const & str, size_t pos, size_t n)
{
I(pos < str.size());
if (n == std::string::npos)
n = str.size() - pos;
I(pos + n <= str.size());
Botan::Pipe p(new Botan::MAC_Filter("HMAC(SHA-1)", key,
constants::sha1_digest_length));
p.start_msg();
p.write(chain_val);
p.write(reinterpret_cast<Botan::byte const *>(str.front_pointer(n) + pos), n);
p.end_msg();
chain_val = p.read_all_as_string();
I(chain_val.size() == constants::sha1_digest_length);
return chain_val;
}