blob: 0f3c90a861abc052c6469cdfa9b051daabcc9a22 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/*************************************************
* PKCS #8 Header File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#ifndef BOTAN_PKCS8_H__
#define BOTAN_PKCS8_H__
#include <botan/x509_key.h>
#include <botan/ui.h>
namespace Botan {
/*************************************************
* PKCS #8 Private Key Encoder *
*************************************************/
class PKCS8_Encoder
{
public:
virtual AlgorithmIdentifier alg_id() const = 0;
virtual MemoryVector<byte> key_bits() const = 0;
virtual ~PKCS8_Encoder() {}
};
/*************************************************
* PKCS #8 Private Key Decoder *
*************************************************/
class PKCS8_Decoder
{
public:
virtual void alg_id(const AlgorithmIdentifier&) = 0;
virtual void key_bits(const MemoryRegion<byte>&) = 0;
virtual ~PKCS8_Decoder() {}
};
/*************************************************
* PKCS #8 General Exception *
*************************************************/
struct PKCS8_Exception : public Decoding_Error
{
PKCS8_Exception(const std::string& error) :
Decoding_Error("PKCS #8: " + error) {}
};
namespace PKCS8 {
/*************************************************
* PKCS #8 Private Key Encoding/Decoding *
*************************************************/
void encode(const Private_Key&, Pipe&, X509_Encoding = PEM);
void encrypt_key(const Private_Key&, Pipe&, const std::string&,
const std::string& = "", X509_Encoding = PEM);
std::string PEM_encode(const Private_Key&);
std::string PEM_encode(const Private_Key&, const std::string&,
const std::string& = "");
Private_Key* load_key(DataSource&, const User_Interface&);
Private_Key* load_key(DataSource&, const std::string& = "");
Private_Key* load_key(const std::string&, const User_Interface&);
Private_Key* load_key(const std::string&, const std::string& = "");
Private_Key* copy_key(const Private_Key&);
}
}
#endif
|