summaryrefslogtreecommitdiffstats
path: root/botan/build/botan/elg_core.h
blob: a7768a6aeebcbe7a3036766c167196bf116f97c4 (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
/*
* ElGamal Core
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#ifndef BOTAN_ELGAMAL_CORE_H__
#define BOTAN_ELGAMAL_CORE_H__

#include <botan/elg_op.h>
#include <botan/blinding.h>
#include <botan/dl_group.h>

namespace Botan {

/*
* ElGamal Core
*/
class BOTAN_DLL ELG_Core
   {
   public:
      SecureVector<byte> encrypt(const byte[], u32bit, const BigInt&) const;
      SecureVector<byte> decrypt(const byte[], u32bit) const;

      ELG_Core& operator=(const ELG_Core&);

      ELG_Core() { op = 0; }
      ELG_Core(const ELG_Core&);

      ELG_Core(const DL_Group&, const BigInt&);
      ELG_Core(RandomNumberGenerator&, const DL_Group&,
               const BigInt&, const BigInt&);

      ~ELG_Core() { delete op; }
   private:
      ELG_Operation* op;
      Blinder blinder;
      u32bit p_bytes;
   };

}

#endif