blob: d1d9a88755ae18ae3f366164ccb44782851d2328 (
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
|
/*
* Blinding for public key operations
* (C) 1999-2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_BLINDER_H__
#define BOTAN_BLINDER_H__
#include <botan/bigint.h>
#include <botan/reducer.h>
namespace Botan {
/*
* Blinding Function Object
*/
class BOTAN_DLL Blinder
{
public:
BigInt blind(const BigInt& x) const;
BigInt unblind(const BigInt& x) const;
/**
* Choose a nonce to use for blinding
* @param x a secret seed value
* @param mod the modulus
*/
static BigInt choose_nonce(const BigInt& x, const BigInt& mod);
Blinder() {}
/**
* Construct a blinder
* @param mask the forward (blinding) mask
* @param inverse_mask the inverse of mask (depends on algo)
* @param modulus of the group operations are performed in
*/
Blinder(const BigInt& mask,
const BigInt& inverse_mask,
const BigInt& modulus);
private:
Modular_Reducer reducer;
mutable BigInt e, d;
};
}
#endif
|