blob: 05c2ec949b8afc9e7c74461a9e49eaa9e6164e28 (
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
77
78
79
|
/*************************************************
* Public Key Operations Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_PK_OPS_H__
#define BOTAN_PK_OPS_H__
#include <botan/bigint.h>
#include <botan/dl_group.h>
namespace Botan {
/*************************************************
* IF Operation *
*************************************************/
class IF_Operation
{
public:
virtual BigInt public_op(const BigInt&) const = 0;
virtual BigInt private_op(const BigInt&) const = 0;
virtual IF_Operation* clone() const = 0;
virtual ~IF_Operation() {}
};
/*************************************************
* DSA Operation *
*************************************************/
class DSA_Operation
{
public:
virtual bool verify(const byte[], u32bit,
const byte[], u32bit) const = 0;
virtual SecureVector<byte> sign(const byte[], u32bit,
const BigInt&) const = 0;
virtual DSA_Operation* clone() const = 0;
virtual ~DSA_Operation() {}
};
/*************************************************
* NR Operation *
*************************************************/
class NR_Operation
{
public:
virtual SecureVector<byte> verify(const byte[], u32bit) const = 0;
virtual SecureVector<byte> sign(const byte[], u32bit,
const BigInt&) const = 0;
virtual NR_Operation* clone() const = 0;
virtual ~NR_Operation() {}
};
/*************************************************
* ElGamal Operation *
*************************************************/
class ELG_Operation
{
public:
virtual SecureVector<byte> encrypt(const byte[], u32bit,
const BigInt&) const = 0;
virtual BigInt decrypt(const BigInt&, const BigInt&) const = 0;
virtual ELG_Operation* clone() const = 0;
virtual ~ELG_Operation() {}
};
/*************************************************
* DH Operation *
*************************************************/
class DH_Operation
{
public:
virtual BigInt agree(const BigInt&) const = 0;
virtual DH_Operation* clone() const = 0;
virtual ~DH_Operation() {}
};
}
#endif
|