summaryrefslogtreecommitdiffstats
path: root/old/botan/src/pubkey/dsa/dsa_core.h
blob: 8bb16211f2966ba9fb2d08bbb492e9b2e2896f91 (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
/*
* DSA Core
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#ifndef BOTAN_DSA_CORE_H__
#define BOTAN_DSA_CORE_H__

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

namespace Botan {

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

      DSA_Core& operator=(const DSA_Core&);

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

}

#endif