Bitcoin ABC 0.32.10
P2P Digital Currency
ecdh.c
Go to the documentation of this file.
1/*************************************************************************
2 * Written in 2020-2022 by Elichai Turkel *
3 * To the extent possible under law, the author(s) have dedicated all *
4 * copyright and related and neighboring rights to the software in this *
5 * file to the public domain worldwide. This software is distributed *
6 * without any warranty. For the CC0 Public Domain Dedication, see *
7 * EXAMPLES_COPYING or https://creativecommons.org/publicdomain/zero/1.0 *
8 *************************************************************************/
9
10#include <stdio.h>
11#include <assert.h>
12#include <string.h>
13
14#include <secp256k1.h>
15#include <secp256k1_ecdh.h>
16
17#include "random.h"
18
19
20int main(void) {
21 unsigned char seckey1[32];
22 unsigned char seckey2[32];
23 unsigned char compressed_pubkey1[33];
24 unsigned char compressed_pubkey2[33];
25 unsigned char shared_secret1[32];
26 unsigned char shared_secret2[32];
27 unsigned char randomize[32];
28 int return_val;
29 size_t len;
30 secp256k1_pubkey pubkey1;
31 secp256k1_pubkey pubkey2;
32
33 /* Before we can call actual API functions, we need to create a "context". */
35 if (!fill_random(randomize, sizeof(randomize))) {
36 printf("Failed to generate randomness\n");
37 return 1;
38 }
39 /* Randomizing the context is recommended to protect against side-channel
40 * leakage See `secp256k1_context_randomize` in secp256k1.h for more
41 * information about it. This should never fail. */
42 return_val = secp256k1_context_randomize(ctx, randomize);
43 assert(return_val);
44
45 /*** Key Generation ***/
46
47 /* If the secret key is zero or out of range (bigger than secp256k1's
48 * order), we try to sample a new key. Note that the probability of this
49 * happening is negligible. */
50 while (1) {
51 if (!fill_random(seckey1, sizeof(seckey1)) || !fill_random(seckey2, sizeof(seckey2))) {
52 printf("Failed to generate randomness\n");
53 return 1;
54 }
56 break;
57 }
58 }
59
60 /* Public key creation using a valid context with a verified secret key should never fail */
61 return_val = secp256k1_ec_pubkey_create(ctx, &pubkey1, seckey1);
62 assert(return_val);
63 return_val = secp256k1_ec_pubkey_create(ctx, &pubkey2, seckey2);
64 assert(return_val);
65
66 /* Serialize pubkey1 in a compressed form (33 bytes), should always return 1 */
67 len = sizeof(compressed_pubkey1);
68 return_val = secp256k1_ec_pubkey_serialize(ctx, compressed_pubkey1, &len, &pubkey1, SECP256K1_EC_COMPRESSED);
69 assert(return_val);
70 /* Should be the same size as the size of the output, because we passed a 33 byte array. */
71 assert(len == sizeof(compressed_pubkey1));
72
73 /* Serialize pubkey2 in a compressed form (33 bytes) */
74 len = sizeof(compressed_pubkey2);
75 return_val = secp256k1_ec_pubkey_serialize(ctx, compressed_pubkey2, &len, &pubkey2, SECP256K1_EC_COMPRESSED);
76 assert(return_val);
77 /* Should be the same size as the size of the output, because we passed a 33 byte array. */
78 assert(len == sizeof(compressed_pubkey2));
79
80 /*** Creating the shared secret ***/
81
82 /* Perform ECDH with seckey1 and pubkey2. Should never fail with a verified
83 * seckey and valid pubkey */
84 return_val = secp256k1_ecdh(ctx, shared_secret1, &pubkey2, seckey1, NULL, NULL);
85 assert(return_val);
86
87 /* Perform ECDH with seckey2 and pubkey1. Should never fail with a verified
88 * seckey and valid pubkey */
89 return_val = secp256k1_ecdh(ctx, shared_secret2, &pubkey1, seckey2, NULL, NULL);
90 assert(return_val);
91
92 /* Both parties should end up with the same shared secret */
93 return_val = memcmp(shared_secret1, shared_secret2, sizeof(shared_secret1));
94 assert(return_val == 0);
95
96 printf("Secret Key1: ");
97 print_hex(seckey1, sizeof(seckey1));
98 printf("Compressed Pubkey1: ");
99 print_hex(compressed_pubkey1, sizeof(compressed_pubkey1));
100 printf("\nSecret Key2: ");
101 print_hex(seckey2, sizeof(seckey2));
102 printf("Compressed Pubkey2: ");
103 print_hex(compressed_pubkey2, sizeof(compressed_pubkey2));
104 printf("\nShared Secret: ");
105 print_hex(shared_secret1, sizeof(shared_secret1));
106
107 /* This will clear everything from the context and free the memory */
109
110 /* It's best practice to try to clear secrets from memory after using them.
111 * This is done because some bugs can allow an attacker to leak memory, for
112 * example through "out of bounds" array access (see Heartbleed), Or the OS
113 * swapping them to disk. Hence, we overwrite the secret key buffer with zeros.
114 *
115 * TODO: Prevent these writes from being optimized out, as any good compiler
116 * will remove any writes that aren't used. */
117 memset(seckey1, 0, sizeof(seckey1));
118 memset(seckey2, 0, sizeof(seckey2));
119 memset(shared_secret1, 0, sizeof(shared_secret1));
120 memset(shared_secret2, 0, sizeof(shared_secret2));
121
122 return 0;
123}
int main(void)
Definition: ecdh.c:20
secp256k1_context * ctx
Definition: bench_impl.h:13
void printf(const char *fmt, const Args &...args)
Format list of arguments to std::cout, according to the given format string.
Definition: tinyformat.h:1126
static int fill_random(unsigned char *data, size_t size)
Definition: random.h:37
static void print_hex(unsigned char *data, size_t size)
Definition: random.h:66
SECP256K1_API void secp256k1_context_destroy(secp256k1_context *ctx) SECP256K1_ARG_NONNULL(1)
Destroy a secp256k1 context object (created in dynamically allocated memory).
Definition: secp256k1.c:176
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_context_randomize(secp256k1_context *ctx, const unsigned char *seed32) SECP256K1_ARG_NONNULL(1)
Randomizes the context to provide enhanced protection against side-channel leakage.
Definition: secp256k1.c:743
SECP256K1_API int secp256k1_ec_pubkey_serialize(const secp256k1_context *ctx, unsigned char *output, size_t *outputlen, const secp256k1_pubkey *pubkey, unsigned int flags) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4)
Serialize a pubkey object into a serialized byte sequence.
Definition: secp256k1.c:282
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_seckey_verify(const secp256k1_context *ctx, const unsigned char *seckey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2)
Verify an ECDSA secret key.
Definition: secp256k1.c:565
SECP256K1_API secp256k1_context * secp256k1_context_create(unsigned int flags) SECP256K1_WARN_UNUSED_RESULT
Create a secp256k1 context object (in dynamically allocated memory).
Definition: secp256k1.c:137
#define SECP256K1_CONTEXT_NONE
Context flags to pass to secp256k1_context_create, secp256k1_context_preallocated_size,...
Definition: secp256k1.h:203
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_create(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const unsigned char *seckey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Compute the public key for a secret key.
Definition: secp256k1.c:588
#define SECP256K1_EC_COMPRESSED
Flag to pass to secp256k1_ec_pubkey_serialize.
Definition: secp256k1.h:213
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ecdh(const secp256k1_context *ctx, unsigned char *output, const secp256k1_pubkey *pubkey, const unsigned char *seckey, secp256k1_ecdh_hash_function hashfp, void *data) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4)
Compute an EC Diffie-Hellman secret in constant time.
Definition: main_impl.h:29
Opaque data structure that holds a parsed and valid public key.
Definition: secp256k1.h:74
assert(!tx.IsCoinBase())