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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#include <string>
#include "botan/botan.h"
#include "sanity.hh"
#include "hmac.hh"
#include "vocab.hh"
#include "constants.hh"
using std::string;
chained_hmac::chained_hmac(netsync_session_key const & session_key, bool active) :
hmac_length(constants::sha1_digest_length),
active(active),
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)
{
if (active)
{
key = Botan::SymmetricKey(reinterpret_cast<Botan::byte const *>(session_key().data()),
session_key().size());
}
}
string
chained_hmac::process(string const & str, size_t pos, size_t n)
{
I(active);
I(pos < str.size());
if (n == string::npos)
n = str.size() - pos;
I(pos + n <= str.size());
Botan::Pipe p(new Botan::MAC_Filter("HMAC(SHA-160)", 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;
}
string
chained_hmac::process(string_queue const & str, size_t pos, size_t n)
{
I(active);
I(pos < str.size());
if (n == string::npos)
n = str.size() - pos;
I(pos + n <= str.size());
Botan::Pipe p(new Botan::MAC_Filter("HMAC(SHA-160)", 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;
}
// Local Variables:
// mode: C++
// fill-column: 76
// c-file-style: "gnu"
// indent-tabs-mode: nil
// End:
// vim: et:sw=2:sts=2:ts=2:cino=>2s,{s,\:s,+s,t0,g0,^-2,e-2,n-2,p2s,(0,=s:
|