aboutsummaryrefslogtreecommitdiffstats
path: root/include/keypair.h
blob: c9a53c0d0b885eb4ea407902d4c8e476f454a253 (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 The Botan Project                *
*************************************************/

#ifndef BOTAN_KEYPAIR_H__
#define BOTAN_KEYPAIR_H__

#include <botan/look_pk.h>

namespace Botan {

namespace KeyPair {

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

}

}

#endif