summaryrefslogtreecommitdiffstats
path: root/old/botan/src/pubkey/nr/nr_core.h
blob: 48377362211ae68faf70c48b9724bd4fd64b24f1 (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
/*
* NR Core
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#ifndef BOTAN_NR_CORE_H__
#define BOTAN_NR_CORE_H__

#include <botan/nr_op.h>
#include <botan/dl_group.h>

namespace Botan {

/*
* NR Core
*/
class BOTAN_DLL NR_Core
   {
   public:
      SecureVector<byte> sign(const byte[], u32bit, const BigInt&) const;
      SecureVector<byte> verify(const byte[], u32bit) const;

      NR_Core& operator=(const NR_Core&);

      NR_Core() { op = 0; }
      NR_Core(const NR_Core&);
      NR_Core(const DL_Group&, const BigInt&, const BigInt& = 0);
      ~NR_Core() { delete op; }
   private:
      NR_Operation* op;
   };

}

#endif