Botan 3.4.0
Crypto and TLS for C&
p11_ecdh.cpp
Go to the documentation of this file.
1/*
2* PKCS#11 ECDH
3* (C) 2016 Daniel Neus, Sirrix AG
4* (C) 2016 Philipp Weber, Sirrix AG
5*
6* Botan is released under the Simplified BSD License (see license.txt)
7*/
8
9#include <botan/p11_ecdh.h>
10
11#if defined(BOTAN_HAS_ECDH)
12
13 #include <botan/der_enc.h>
14 #include <botan/pk_ops.h>
15 #include <botan/rng.h>
16 #include <botan/internal/p11_mechanism.h>
17
18namespace Botan::PKCS11 {
19
20ECDH_PublicKey PKCS11_ECDH_PublicKey::export_key() const {
21 return ECDH_PublicKey(domain(), public_point());
22}
23
24ECDH_PrivateKey PKCS11_ECDH_PrivateKey::export_key() const {
25 auto priv_key = get_attribute_value(AttributeType::Value);
26
27 Null_RNG rng;
28 return ECDH_PrivateKey(rng, domain(), BigInt::decode(priv_key));
29}
30
31std::unique_ptr<Public_Key> PKCS11_ECDH_PrivateKey::public_key() const {
32 return std::make_unique<ECDH_PublicKey>(domain(), public_point());
33}
34
35secure_vector<uint8_t> PKCS11_ECDH_PrivateKey::private_key_bits() const {
36 return export_key().private_key_bits();
37}
38
39namespace {
40class PKCS11_ECDH_KA_Operation final : public PK_Ops::Key_Agreement {
41 public:
42 PKCS11_ECDH_KA_Operation(const PKCS11_EC_PrivateKey& key, std::string_view params) :
43 PK_Ops::Key_Agreement(), m_key(key), m_mechanism(MechanismWrapper::create_ecdh_mechanism(params)) {}
44
45 size_t agreed_value_size() const override { return m_key.domain().get_p_bytes(); }
46
47 /// The encoding in V2.20 was not specified and resulted in different implementations choosing different encodings.
48 /// Applications relying only on a V2.20 encoding (e.g. the DER variant) other than the one specified now (raw) may not work with all V2.30 compliant tokens.
49 secure_vector<uint8_t> agree(size_t key_len,
50 const uint8_t other_key[],
51 size_t other_key_len,
52 const uint8_t salt[],
53 size_t salt_len) override {
54 std::vector<uint8_t> der_encoded_other_key;
55 if(m_key.point_encoding() == PublicPointEncoding::Der) {
56 DER_Encoder(der_encoded_other_key).encode(other_key, other_key_len, ASN1_Type::OctetString);
57 m_mechanism.set_ecdh_other_key(der_encoded_other_key.data(), der_encoded_other_key.size());
58 } else {
59 m_mechanism.set_ecdh_other_key(other_key, other_key_len);
60 }
61
62 if(salt != nullptr && salt_len > 0) {
63 m_mechanism.set_ecdh_salt(salt, salt_len);
64 }
65
66 ObjectHandle secret_handle = 0;
67 AttributeContainer attributes;
68 attributes.add_bool(AttributeType::Sensitive, false);
69 attributes.add_bool(AttributeType::Extractable, true);
70 attributes.add_numeric(AttributeType::Class, static_cast<CK_OBJECT_CLASS>(ObjectClass::SecretKey));
71 attributes.add_numeric(AttributeType::KeyType, static_cast<CK_KEY_TYPE>(KeyType::GenericSecret));
72 attributes.add_numeric(AttributeType::ValueLen, static_cast<CK_ULONG>(key_len));
73 m_key.module()->C_DeriveKey(m_key.session().handle(),
74 m_mechanism.data(),
75 m_key.handle(),
76 attributes.data(),
77 static_cast<Ulong>(attributes.count()),
78 &secret_handle);
79
80 Object secret_object(m_key.session(), secret_handle);
81 secure_vector<uint8_t> secret = secret_object.get_attribute_value(AttributeType::Value);
82 if(secret.size() < key_len) {
83 throw PKCS11_Error("ECDH key derivation secret length is too short");
84 }
85 secret.resize(key_len);
86 return secret;
87 }
88
89 private:
90 const PKCS11_EC_PrivateKey& m_key;
91 MechanismWrapper m_mechanism;
92};
93
94} // namespace
95
96std::unique_ptr<PK_Ops::Key_Agreement> PKCS11_ECDH_PrivateKey::create_key_agreement_op(
97 RandomNumberGenerator& /*rng*/, std::string_view params, std::string_view /*provider*/) const {
98 return std::make_unique<PKCS11_ECDH_KA_Operation>(*this, params);
99}
100
101PKCS11_ECDH_KeyPair generate_ecdh_keypair(Session& session,
102 const EC_PublicKeyGenerationProperties& pub_props,
103 const EC_PrivateKeyGenerationProperties& priv_props) {
104 ObjectHandle pub_key_handle = 0;
105 ObjectHandle priv_key_handle = 0;
106
107 Mechanism mechanism = {static_cast<CK_MECHANISM_TYPE>(MechanismType::EcKeyPairGen), nullptr, 0};
108
109 session.module()->C_GenerateKeyPair(session.handle(),
110 &mechanism,
111 pub_props.data(),
112 static_cast<Ulong>(pub_props.count()),
113 priv_props.data(),
114 static_cast<Ulong>(priv_props.count()),
115 &pub_key_handle,
116 &priv_key_handle);
117
118 return std::make_pair(PKCS11_ECDH_PublicKey(session, pub_key_handle),
119 PKCS11_ECDH_PrivateKey(session, priv_key_handle));
120}
121
122} // namespace Botan::PKCS11
123
124#endif
static BigInt decode(const uint8_t buf[], size_t length)
Definition bigint.h:773
int(* final)(unsigned char *, CTX *)
CK_MECHANISM Mechanism
Definition p11.h:817
CK_OBJECT_HANDLE ObjectHandle
Definition p11.h:824
CK_ULONG Ulong
Definition p11.h:814
unsigned long int CK_ULONG
Definition pkcs11t.h:48
CK_ULONG CK_OBJECT_CLASS
Definition pkcs11t.h:307
CK_ULONG CK_KEY_TYPE
Definition pkcs11t.h:336
CK_ULONG CK_MECHANISM_TYPE
Definition pkcs11t.h:583