blob: 4d86f1766f0e72c6120cab4bd107eac6a56008ea (
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
|
/**
* XMSS Key Pair
* (C) 2016 Matthias Gierlings
*
* Botan is released under the Simplified BSD License (see license.txt)
**/
#ifndef BOTAN_XMSS_KEY_PAIR_H__
#define BOTAN_XMSS_KEY_PAIR_H__
#include <botan/botan.h>
#include <botan/rng.h>
#include <botan/xmss_parameters.h>
#include <botan/xmss_wots_parameters.h>
#include <botan/xmss_publickey.h>
#include <botan/xmss_privatekey.h>
namespace Botan {
/**
* A pair of XMSS public and private key.
**/
class BOTAN_DLL XMSS_Key_Pair
{
public:
XMSS_Key_Pair(XMSS_Parameters::xmss_algorithm_t xmss_oid,
RandomNumberGenerator& rng)
: m_priv_key(xmss_oid, rng), m_pub_key(m_priv_key) {}
XMSS_Key_Pair(const XMSS_PublicKey& pub_key,
const XMSS_PrivateKey& priv_key)
: m_priv_key(priv_key), m_pub_key(pub_key)
{}
XMSS_Key_Pair(XMSS_PublicKey&& pub_key,
XMSS_PrivateKey&& priv_key)
: m_priv_key(std::move(priv_key)), m_pub_key(std::move(pub_key)) {}
const XMSS_PublicKey& public_key() const { return m_pub_key; }
XMSS_PublicKey& public_key() { return m_pub_key; }
const XMSS_PrivateKey& private_key() const { return m_priv_key; }
XMSS_PrivateKey& private_key() { return m_priv_key; }
private:
XMSS_PrivateKey m_priv_key;
XMSS_PublicKey m_pub_key;
};
}
#endif
|