blob: 0bd8f51bf1215024c8419d2704f68c0d6322f449 (
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(PK_Encryptor*, PK_Decryptor*);
BOTAN_DLL void check_key(PK_Signer*, PK_Verifier*);
}
}
#endif
|