blob: b55ba69ccde238b55890dd88bd56536618843cc2 (
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
|
/*************************************************
* X.509 Public Key Header File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#ifndef BOTAN_X509_PUBLIC_KEY_H__
#define BOTAN_X509_PUBLIC_KEY_H__
#include <botan/pipe.h>
#include <botan/pk_keys.h>
namespace Botan {
/*************************************************
* X.509 Public Key *
*************************************************/
class X509_PublicKey : public virtual PK_Key
{
public:
u64bit key_id() const;
virtual MemoryVector<byte> DER_encode_pub() const = 0;
virtual MemoryVector<byte> DER_encode_params() const = 0;
virtual void BER_decode_pub(DataSource&) = 0;
virtual void BER_decode_params(DataSource&) = 0;
virtual ~X509_PublicKey() {}
};
namespace X509 {
/*************************************************
* X.509 Public Key Encoding/Decoding *
*************************************************/
void encode(const X509_PublicKey&, Pipe&, X509_Encoding = PEM);
std::string PEM_encode(const X509_PublicKey&);
X509_PublicKey* load_key(DataSource&);
X509_PublicKey* load_key(const std::string&);
X509_PublicKey* load_key(const MemoryRegion<byte>&);
X509_PublicKey* copy_key(const X509_PublicKey&);
Key_Constraints find_constraints(const X509_PublicKey&, Key_Constraints);
}
}
#endif
|