blob: 2bb6680d684bbea9b7517644b77ef7105a47cf0f (
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
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
|
/*
* Blinding for public key operations
* (C) 1999-2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/blinding.h>
#include <botan/numthry.h>
#include <botan/libstate.h>
#include <botan/hash.h>
#include <botan/time.h>
#include <botan/loadstor.h>
#include <memory>
namespace Botan {
/*
* Blinder Constructor
*/
Blinder::Blinder(const BigInt& e, const BigInt& d, const BigInt& n)
{
if(e < 1 || d < 1 || n < 1)
throw Invalid_Argument("Blinder: Arguments too small");
reducer = Modular_Reducer(n);
this->e = e;
this->d = d;
}
BigInt Blinder::choose_nonce(const BigInt& x, const BigInt& mod)
{
Algorithm_Factory& af = global_state().algorithm_factory();
std::auto_ptr<HashFunction> hash(af.make_hash_function("SHA-512"));
u64bit ns_clock = get_nanoseconds_clock();
for(size_t i = 0; i != sizeof(ns_clock); ++i)
hash->update(get_byte(0, ns_clock));
hash->update(BigInt::encode(x));
hash->update(BigInt::encode(mod));
u64bit timestamp = system_time();
for(size_t i = 0; i != sizeof(timestamp); ++i)
hash->update(get_byte(0, timestamp));
SecureVector<byte> r = hash->final();
return BigInt::decode(r) % mod;
}
/*
* Blind a number
*/
BigInt Blinder::blind(const BigInt& i) const
{
if(!reducer.initialized())
return i;
e = reducer.square(e);
d = reducer.square(d);
return reducer.multiply(i, e);
}
/*
* Unblind a number
*/
BigInt Blinder::unblind(const BigInt& i) const
{
if(!reducer.initialized())
return i;
return reducer.multiply(i, d);
}
}
|