aboutsummaryrefslogtreecommitdiffstats
path: root/include/keypair.h
blob: da322c0756849ba9ffd952c46ae94e3487220bb8 (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
/*************************************************
* Keypair Checks Header File                     *
* (C) 1999-2007 Jack Lloyd                       *
*************************************************/

#ifndef BOTAN_KEYPAIR_H__
#define BOTAN_KEYPAIR_H__

#include <botan/look_pk.h>

namespace Botan {

namespace KeyPair {

/*************************************************
* Check key pair consistency                     *
*************************************************/
BOTAN_DLL void check_key(RandomNumberGenerator&, PK_Encryptor*, PK_Decryptor*);
BOTAN_DLL void check_key(RandomNumberGenerator&, PK_Signer*, PK_Verifier*);

}

}

#endif