Botan 3.0.0-alpha0
Crypto and TLS for C&
curve25519.cpp
Go to the documentation of this file.
1/*
2* Curve25519
3* (C) 2014 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#include <botan/curve25519.h>
9#include <botan/internal/pk_ops_impl.h>
10#include <botan/ber_dec.h>
11#include <botan/der_enc.h>
12#include <botan/rng.h>
13
14namespace Botan {
15
16void curve25519_basepoint(uint8_t mypublic[32], const uint8_t secret[32])
17 {
18 const uint8_t basepoint[32] = { 9 };
19 curve25519_donna(mypublic, secret, basepoint);
20 }
21
22namespace {
23
24void size_check(size_t size, const char* thing)
25 {
26 if(size != 32)
27 throw Decoding_Error("Invalid size " + std::to_string(size) + " for Curve25519 " + thing);
28 }
29
30secure_vector<uint8_t> curve25519(const secure_vector<uint8_t>& secret,
31 const uint8_t pubval[32])
32 {
33 secure_vector<uint8_t> out(32);
34 curve25519_donna(out.data(), secret.data(), pubval);
35 return out;
36 }
37
38}
39
41 {
43 }
44
45bool Curve25519_PublicKey::check_key(RandomNumberGenerator& /*rng*/, bool /*strong*/) const
46 {
47 return true; // no tests possible?
48 }
49
51 const std::vector<uint8_t>& key_bits)
52 {
53 m_public = key_bits;
54
55 size_check(m_public.size(), "public key");
56 }
57
58std::vector<uint8_t> Curve25519_PublicKey::public_key_bits() const
59 {
60 return m_public;
61 }
62
64 {
65 if(secret_key.size() != 32)
66 throw Decoding_Error("Invalid size for Curve25519 private key");
67
68 m_public.resize(32);
69 m_private = secret_key;
70 curve25519_basepoint(m_public.data(), m_private.data());
71 }
72
74 {
75 m_private = rng.random_vec(32);
76 m_public.resize(32);
77 curve25519_basepoint(m_public.data(), m_private.data());
78 }
79
81 const secure_vector<uint8_t>& key_bits)
82 {
84
85 size_check(m_private.size(), "private key");
86 m_public.resize(32);
87 curve25519_basepoint(m_public.data(), m_private.data());
88 }
89
90std::unique_ptr<Public_Key> Curve25519_PrivateKey::public_key() const
91 {
92 return std::make_unique<Curve25519_PublicKey>(public_value());
93 }
94
96 {
98 }
99
100bool Curve25519_PrivateKey::check_key(RandomNumberGenerator& /*rng*/, bool /*strong*/) const
101 {
102 std::vector<uint8_t> public_point(32);
103 curve25519_basepoint(public_point.data(), m_private.data());
104 return public_point == m_public;
105 }
106
107secure_vector<uint8_t> Curve25519_PrivateKey::agree(const uint8_t w[], size_t w_len) const
108 {
109 size_check(w_len, "public value");
110 return curve25519(m_private, w);
111 }
112
113namespace {
114
115/**
116* Curve25519 operation
117*/
118class Curve25519_KA_Operation final : public PK_Ops::Key_Agreement_with_KDF
119 {
120 public:
121
122 Curve25519_KA_Operation(const Curve25519_PrivateKey& key, const std::string& kdf) :
123 PK_Ops::Key_Agreement_with_KDF(kdf),
124 m_key(key) {}
125
126 size_t agreed_value_size() const override { return 32; }
127
128 secure_vector<uint8_t> raw_agree(const uint8_t w[], size_t w_len) override
129 {
130 return m_key.agree(w, w_len);
131 }
132 private:
133 const Curve25519_PrivateKey& m_key;
134 };
135
136}
137
138std::unique_ptr<PK_Ops::Key_Agreement>
140 const std::string& params,
141 const std::string& provider) const
142 {
143 if(provider == "base" || provider.empty())
144 return std::make_unique<Curve25519_KA_Operation>(*this, params);
145 throw Provider_Not_Found(algo_name(), provider);
146 }
147
148}
BER_Decoder & decode(bool &out)
Definition: ber_dec.h:187
BER_Decoder & discard_remaining()
Definition: ber_dec.cpp:228
std::unique_ptr< Public_Key > public_key() const override
Definition: curve25519.cpp:90
std::vector< uint8_t > public_value() const override
Definition: curve25519.h:83
secure_vector< uint8_t > private_key_bits() const override
Definition: curve25519.cpp:95
secure_vector< uint8_t > agree(const uint8_t w[], size_t w_len) const
Definition: curve25519.cpp:107
std::unique_ptr< PK_Ops::Key_Agreement > create_key_agreement_op(RandomNumberGenerator &rng, const std::string &params, const std::string &provider) const override
Definition: curve25519.cpp:139
Curve25519_PrivateKey(const AlgorithmIdentifier &alg_id, const secure_vector< uint8_t > &key_bits)
Definition: curve25519.cpp:80
bool check_key(RandomNumberGenerator &rng, bool strong) const override
Definition: curve25519.cpp:100
std::vector< uint8_t > public_key_bits() const override
Definition: curve25519.cpp:58
std::vector< uint8_t > m_public
Definition: curve25519.h:55
bool check_key(RandomNumberGenerator &rng, bool strong) const override
Definition: curve25519.cpp:45
AlgorithmIdentifier algorithm_identifier() const override
Definition: curve25519.cpp:40
std::string algo_name() const override
Definition: curve25519.h:18
secure_vector< uint8_t > get_contents()
Definition: der_enc.cpp:155
DER_Encoder & encode(bool b)
Definition: der_enc.cpp:288
virtual OID get_oid() const
Definition: pk_keys.cpp:53
secure_vector< uint8_t > random_vec(size_t bytes)
Definition: rng.h:167
int(* final)(unsigned char *, CTX *)
std::string to_string(const BER_Object &obj)
Definition: asn1_obj.cpp:209
Definition: alg_id.cpp:13
void curve25519_donna(uint8_t mypublic[32], const uint8_t secret[32], const uint8_t basepoint[32])
Definition: donna.cpp:440
void curve25519_basepoint(uint8_t mypublic[32], const uint8_t secret[32])
Definition: curve25519.cpp:16
std::vector< T, secure_allocator< T > > secure_vector
Definition: secmem.h:65