Botan 3.4.0
Crypto and TLS for C&
ed25519_key.cpp
Go to the documentation of this file.
1/*
2* Ed25519
3* (C) 2017 Ribose Inc
4*
5* Based on the public domain code from SUPERCOP ref10 by
6* Peter Schwabe, Daniel J. Bernstein, Niels Duif, Tanja Lange, Bo-Yin Yang
7*
8* Botan is released under the Simplified BSD License (see license.txt)
9*/
10
11#include <botan/ed25519.h>
12
13#include <botan/ber_dec.h>
14#include <botan/der_enc.h>
15#include <botan/hash.h>
16#include <botan/rng.h>
17#include <botan/internal/ct_utils.h>
18#include <botan/internal/ed25519_internal.h>
19#include <botan/internal/pk_ops_impl.h>
20
21namespace Botan {
22
26
27bool Ed25519_PublicKey::check_key(RandomNumberGenerator& /*rng*/, bool /*strong*/) const {
28 if(m_public.size() != 32) {
29 return false;
30 }
31
32 /*
33 This function was derived from public domain code in Tor's blinding.c
34 */
35
36 const uint8_t identity_element[32] = {1};
37 if(CT::is_equal(m_public.data(), identity_element, 32).as_bool()) {
38 return false;
39 }
40
41 // The order of the Ed25519 group encoded
42 const uint8_t modm_m[32] = {0xed, 0xd3, 0xf5, 0x5c, 0x1a, 0x63, 0x12, 0x58, 0xd6, 0x9c, 0xf7,
43 0xa2, 0xde, 0xf9, 0xde, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
44 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10};
45
46 const unsigned char zero[32] = {0};
47
48 unsigned char pkcopy[32];
49
50 copy_mem(pkcopy, m_public.data(), 32);
51 pkcopy[31] ^= (1 << 7); // flip sign
52 ge_p3 point;
53 if(ge_frombytes_negate_vartime(&point, pkcopy) != 0) {
54 return false;
55 }
56
57 uint8_t result[32];
58 ge_double_scalarmult_vartime(result, modm_m, &point, zero);
59
60 if(!CT::is_equal(result, identity_element, 32).as_bool()) {
61 return false;
62 }
63
64 return true;
65}
66
67Ed25519_PublicKey::Ed25519_PublicKey(const uint8_t pub_key[], size_t pub_len) {
68 if(pub_len != 32) {
69 throw Decoding_Error("Invalid length for Ed25519 key");
70 }
71 m_public.assign(pub_key, pub_key + pub_len);
72}
73
74Ed25519_PublicKey::Ed25519_PublicKey(const AlgorithmIdentifier& /*unused*/, std::span<const uint8_t> key_bits) {
75 m_public.assign(key_bits.begin(), key_bits.end());
76
77 if(m_public.size() != 32) {
78 throw Decoding_Error("Invalid size for Ed25519 public key");
79 }
80}
81
82std::vector<uint8_t> Ed25519_PublicKey::public_key_bits() const {
83 return m_public;
84}
85
86std::unique_ptr<Private_Key> Ed25519_PublicKey::generate_another(RandomNumberGenerator& rng) const {
87 return std::make_unique<Ed25519_PrivateKey>(rng);
88}
89
91 if(secret_key.size() == 64) {
92 m_private = secret_key;
93 m_public.assign(m_private.begin() + 32, m_private.end());
94 } else if(secret_key.size() == 32) {
95 m_public.resize(32);
96 m_private.resize(64);
97 ed25519_gen_keypair(m_public.data(), m_private.data(), secret_key.data());
98 } else {
99 throw Decoding_Error("Invalid size for Ed25519 private key");
100 }
101}
102
104 const secure_vector<uint8_t> seed = rng.random_vec(32);
105 m_public.resize(32);
106 m_private.resize(64);
107 ed25519_gen_keypair(m_public.data(), m_private.data(), seed.data());
108}
109
110Ed25519_PrivateKey::Ed25519_PrivateKey(const AlgorithmIdentifier& /*unused*/, std::span<const uint8_t> key_bits) {
113
114 if(bits.size() != 32) {
115 throw Decoding_Error("Invalid size for Ed25519 private key");
116 }
117 m_public.resize(32);
118 m_private.resize(64);
119 ed25519_gen_keypair(m_public.data(), m_private.data(), bits.data());
120}
121
122std::unique_ptr<Public_Key> Ed25519_PrivateKey::public_key() const {
123 return std::make_unique<Ed25519_PublicKey>(get_public_key());
124}
125
130
131bool Ed25519_PrivateKey::check_key(RandomNumberGenerator& /*rng*/, bool /*strong*/) const {
132 return true; // ???
133}
134
135namespace {
136
137/**
138* Ed25519 verifying operation
139*/
140class Ed25519_Pure_Verify_Operation final : public PK_Ops::Verification {
141 public:
142 explicit Ed25519_Pure_Verify_Operation(const Ed25519_PublicKey& key) : m_key(key.get_public_key()) {}
143
144 void update(const uint8_t msg[], size_t msg_len) override { m_msg.insert(m_msg.end(), msg, msg + msg_len); }
145
146 bool is_valid_signature(const uint8_t sig[], size_t sig_len) override {
147 if(sig_len != 64) {
148 return false;
149 }
150
151 BOTAN_ASSERT_EQUAL(m_key.size(), 32, "Expected size");
152 const bool ok = ed25519_verify(m_msg.data(), m_msg.size(), sig, m_key.data(), nullptr, 0);
153 m_msg.clear();
154 return ok;
155 }
156
157 std::string hash_function() const override { return "SHA-512"; }
158
159 private:
160 std::vector<uint8_t> m_msg;
161 std::vector<uint8_t> m_key;
162};
163
164/**
165* Ed25519 verifying operation with pre-hash
166*/
167class Ed25519_Hashed_Verify_Operation final : public PK_Ops::Verification {
168 public:
169 Ed25519_Hashed_Verify_Operation(const Ed25519_PublicKey& key, std::string_view hash, bool rfc8032) :
170 m_key(key.get_public_key()) {
171 m_hash = HashFunction::create_or_throw(hash);
172
173 if(rfc8032) {
174 m_domain_sep = {0x53, 0x69, 0x67, 0x45, 0x64, 0x32, 0x35, 0x35, 0x31, 0x39, 0x20, 0x6E,
175 0x6F, 0x20, 0x45, 0x64, 0x32, 0x35, 0x35, 0x31, 0x39, 0x20, 0x63, 0x6F,
176 0x6C, 0x6C, 0x69, 0x73, 0x69, 0x6F, 0x6E, 0x73, 0x01, 0x00};
177 }
178 }
179
180 void update(const uint8_t msg[], size_t msg_len) override { m_hash->update(msg, msg_len); }
181
182 bool is_valid_signature(const uint8_t sig[], size_t sig_len) override {
183 if(sig_len != 64) {
184 return false;
185 }
186 std::vector<uint8_t> msg_hash(m_hash->output_length());
187 m_hash->final(msg_hash.data());
188
189 BOTAN_ASSERT_EQUAL(m_key.size(), 32, "Expected size");
190 return ed25519_verify(
191 msg_hash.data(), msg_hash.size(), sig, m_key.data(), m_domain_sep.data(), m_domain_sep.size());
192 }
193
194 std::string hash_function() const override { return m_hash->name(); }
195
196 private:
197 std::unique_ptr<HashFunction> m_hash;
198 std::vector<uint8_t> m_key;
199 std::vector<uint8_t> m_domain_sep;
200};
201
202/**
203* Ed25519 signing operation ('pure' - signs message directly)
204*/
205class Ed25519_Pure_Sign_Operation final : public PK_Ops::Signature {
206 public:
207 explicit Ed25519_Pure_Sign_Operation(const Ed25519_PrivateKey& key) : m_key(key.raw_private_key_bits()) {}
208
209 void update(const uint8_t msg[], size_t msg_len) override { m_msg.insert(m_msg.end(), msg, msg + msg_len); }
210
211 secure_vector<uint8_t> sign(RandomNumberGenerator& /*rng*/) override {
212 secure_vector<uint8_t> sig(64);
213 ed25519_sign(sig.data(), m_msg.data(), m_msg.size(), m_key.data(), nullptr, 0);
214 m_msg.clear();
215 return sig;
216 }
217
218 size_t signature_length() const override { return 64; }
219
220 AlgorithmIdentifier algorithm_identifier() const override;
221
222 std::string hash_function() const override { return "SHA-512"; }
223
224 private:
225 std::vector<uint8_t> m_msg;
226 secure_vector<uint8_t> m_key;
227};
228
229AlgorithmIdentifier Ed25519_Pure_Sign_Operation::algorithm_identifier() const {
230 return AlgorithmIdentifier(OID::from_string("Ed25519"), AlgorithmIdentifier::USE_EMPTY_PARAM);
231}
232
233/**
234* Ed25519 signing operation with pre-hash
235*/
236class Ed25519_Hashed_Sign_Operation final : public PK_Ops::Signature {
237 public:
238 Ed25519_Hashed_Sign_Operation(const Ed25519_PrivateKey& key, std::string_view hash, bool rfc8032) :
239 m_key(key.raw_private_key_bits()) {
240 m_hash = HashFunction::create_or_throw(hash);
241
242 if(rfc8032) {
243 m_domain_sep = std::vector<uint8_t>{0x53, 0x69, 0x67, 0x45, 0x64, 0x32, 0x35, 0x35, 0x31, 0x39, 0x20, 0x6E,
244 0x6F, 0x20, 0x45, 0x64, 0x32, 0x35, 0x35, 0x31, 0x39, 0x20, 0x63, 0x6F,
245 0x6C, 0x6C, 0x69, 0x73, 0x69, 0x6F, 0x6E, 0x73, 0x01, 0x00};
246 }
247 }
248
249 size_t signature_length() const override { return 64; }
250
251 void update(const uint8_t msg[], size_t msg_len) override { m_hash->update(msg, msg_len); }
252
253 secure_vector<uint8_t> sign(RandomNumberGenerator& /*rng*/) override {
254 secure_vector<uint8_t> sig(64);
255 std::vector<uint8_t> msg_hash(m_hash->output_length());
256 m_hash->final(msg_hash.data());
258 sig.data(), msg_hash.data(), msg_hash.size(), m_key.data(), m_domain_sep.data(), m_domain_sep.size());
259 return sig;
260 }
261
262 std::string hash_function() const override { return m_hash->name(); }
263
264 private:
265 std::unique_ptr<HashFunction> m_hash;
266 secure_vector<uint8_t> m_key;
267 std::vector<uint8_t> m_domain_sep;
268};
269
270} // namespace
271
272std::unique_ptr<PK_Ops::Verification> Ed25519_PublicKey::create_verification_op(std::string_view params,
273 std::string_view provider) const {
274 if(provider == "base" || provider.empty()) {
275 if(params.empty() || params == "Identity" || params == "Pure") {
276 return std::make_unique<Ed25519_Pure_Verify_Operation>(*this);
277 } else if(params == "Ed25519ph") {
278 return std::make_unique<Ed25519_Hashed_Verify_Operation>(*this, "SHA-512", true);
279 } else {
280 return std::make_unique<Ed25519_Hashed_Verify_Operation>(*this, params, false);
281 }
282 }
283 throw Provider_Not_Found(algo_name(), provider);
284}
285
286std::unique_ptr<PK_Ops::Verification> Ed25519_PublicKey::create_x509_verification_op(const AlgorithmIdentifier& alg_id,
287 std::string_view provider) const {
288 if(provider == "base" || provider.empty()) {
289 if(alg_id != this->algorithm_identifier()) {
290 throw Decoding_Error("Unexpected AlgorithmIdentifier for Ed25519 X509 signature");
291 }
292
293 return std::make_unique<Ed25519_Pure_Verify_Operation>(*this);
294 }
295 throw Provider_Not_Found(algo_name(), provider);
296}
297
298std::unique_ptr<PK_Ops::Signature> Ed25519_PrivateKey::create_signature_op(RandomNumberGenerator& /*rng*/,
299 std::string_view params,
300 std::string_view provider) const {
301 if(provider == "base" || provider.empty()) {
302 if(params.empty() || params == "Identity" || params == "Pure") {
303 return std::make_unique<Ed25519_Pure_Sign_Operation>(*this);
304 } else if(params == "Ed25519ph") {
305 return std::make_unique<Ed25519_Hashed_Sign_Operation>(*this, "SHA-512", true);
306 } else {
307 return std::make_unique<Ed25519_Hashed_Sign_Operation>(*this, params, false);
308 }
309 }
310 throw Provider_Not_Found(algo_name(), provider);
311}
312
313} // namespace Botan
#define BOTAN_ASSERT_EQUAL(expr1, expr2, assertion_made)
Definition assert.h:68
virtual OID object_identifier() const
Definition pk_keys.cpp:22
BER_Decoder & decode(bool &out)
Definition ber_dec.h:176
BER_Decoder & discard_remaining()
Definition ber_dec.cpp:222
secure_vector< uint8_t > get_contents()
Definition der_enc.cpp:132
DER_Encoder & encode(bool b)
Definition der_enc.cpp:250
Ed25519_PrivateKey(const AlgorithmIdentifier &alg_id, std::span< const uint8_t > key_bits)
std::unique_ptr< Public_Key > public_key() const override
bool check_key(RandomNumberGenerator &rng, bool strong) const override
std::unique_ptr< PK_Ops::Signature > create_signature_op(RandomNumberGenerator &rng, std::string_view params, std::string_view provider) const override
secure_vector< uint8_t > private_key_bits() const override
std::vector< uint8_t > m_public
Definition ed25519.h:58
std::unique_ptr< PK_Ops::Verification > create_verification_op(std::string_view params, std::string_view provider) const override
std::unique_ptr< PK_Ops::Verification > create_x509_verification_op(const AlgorithmIdentifier &signature_algorithm, std::string_view provider) const override
const std::vector< uint8_t > & get_public_key() const
Definition ed25519.h:36
bool check_key(RandomNumberGenerator &rng, bool strong) const override
std::unique_ptr< Private_Key > generate_another(RandomNumberGenerator &rng) const final
std::vector< uint8_t > public_key_bits() const override
AlgorithmIdentifier algorithm_identifier() const override
static std::unique_ptr< HashFunction > create_or_throw(std::string_view algo_spec, std::string_view provider="")
Definition hash.cpp:298
void random_vec(std::span< uint8_t > v)
Definition rng.h:179
int(* update)(CTX *, const void *, CC_LONG len)
int(* final)(unsigned char *, CTX *)
constexpr CT::Mask< T > is_equal(const T x[], const T y[], size_t len)
Definition ct_utils.h:345
int ge_frombytes_negate_vartime(ge_p3 *v, const uint8_t *)
Definition ge.cpp:425
void ed25519_sign(uint8_t sig[64], const uint8_t m[], size_t mlen, const uint8_t sk[64], const uint8_t domain_sep[], size_t domain_sep_len)
Definition ed25519.cpp:37
void ed25519_gen_keypair(uint8_t *pk, uint8_t *sk, const uint8_t seed[32])
Definition ed25519.cpp:20
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:61
bool ed25519_verify(const uint8_t *m, size_t mlen, const uint8_t sig[64], const uint8_t *pk, const uint8_t domain_sep[], size_t domain_sep_len)
Definition ed25519.cpp:73
constexpr void copy_mem(T *out, const T *in, size_t n)
Definition mem_ops.h:146
void ge_double_scalarmult_vartime(uint8_t out[32], const uint8_t a[], const ge_p3 *A, const uint8_t b[])