blob: 63756ad225e064b77c328120d1b4140de70f7cca (
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
38
|
/*************************************************
* PK Algorithm Lookup Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_PK_LOOKUP_H__
#define BOTAN_PK_LOOKUP_H__
#include <botan/pubkey.h>
namespace Botan {
/*************************************************
* Get an PK algorithm object *
*************************************************/
BOTAN_DLL PK_Encryptor* get_pk_encryptor(const PK_Encrypting_Key&,
const std::string&);
BOTAN_DLL PK_Decryptor* get_pk_decryptor(const PK_Decrypting_Key&,
const std::string&);
BOTAN_DLL PK_Signer* get_pk_signer(const PK_Signing_Key&,
const std::string&,
Signature_Format = IEEE_1363);
BOTAN_DLL PK_Verifier* get_pk_verifier(const PK_Verifying_with_MR_Key&,
const std::string&,
Signature_Format = IEEE_1363);
BOTAN_DLL PK_Verifier* get_pk_verifier(const PK_Verifying_wo_MR_Key&,
const std::string&,
Signature_Format = IEEE_1363);
BOTAN_DLL PK_Key_Agreement* get_pk_kas(const PK_Key_Agreement_Key&,
const std::string&);
}
#endif
|