1 /***********************************************************************
2 * Copyright (c) 2020 Jonas Nick *
3 * Distributed under the MIT software license, see the accompanying *
4 * file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5 ***********************************************************************/
7 #ifndef SECP256K1_MODULE_EXTRAKEYS_MAIN_H
8 #define SECP256K1_MODULE_EXTRAKEYS_MAIN_H
10 #include "include/secp256k1.h"
11 #include "include/secp256k1_extrakeys.h"
13 static SECP256K1_INLINE int secp256k1_xonly_pubkey_load(const secp256k1_context* ctx, secp256k1_ge *ge, const secp256k1_xonly_pubkey *pubkey) {
14 return secp256k1_pubkey_load(ctx, ge, (const secp256k1_pubkey *) pubkey);
17 static SECP256K1_INLINE void secp256k1_xonly_pubkey_save(secp256k1_xonly_pubkey *pubkey, secp256k1_ge *ge) {
18 secp256k1_pubkey_save((secp256k1_pubkey *) pubkey, ge);
21 int secp256k1_xonly_pubkey_parse(const secp256k1_context* ctx, secp256k1_xonly_pubkey *pubkey, const unsigned char *input32) {
25 VERIFY_CHECK(ctx != NULL);
26 ARG_CHECK(pubkey != NULL);
27 memset(pubkey, 0, sizeof(*pubkey));
28 ARG_CHECK(input32 != NULL);
30 if (!secp256k1_fe_set_b32(&x, input32)) {
33 if (!secp256k1_ge_set_xo_var(&pk, &x, 0)) {
36 if (!secp256k1_ge_is_in_correct_subgroup(&pk)) {
39 secp256k1_xonly_pubkey_save(pubkey, &pk);
43 int secp256k1_xonly_pubkey_serialize(const secp256k1_context* ctx, unsigned char *output32, const secp256k1_xonly_pubkey *pubkey) {
46 VERIFY_CHECK(ctx != NULL);
47 ARG_CHECK(output32 != NULL);
48 memset(output32, 0, 32);
49 ARG_CHECK(pubkey != NULL);
51 if (!secp256k1_xonly_pubkey_load(ctx, &pk, pubkey)) {
54 secp256k1_fe_get_b32(output32, &pk.x);
58 int secp256k1_xonly_pubkey_cmp(const secp256k1_context* ctx, const secp256k1_xonly_pubkey* pk0, const secp256k1_xonly_pubkey* pk1) {
59 unsigned char out[2][32];
60 const secp256k1_xonly_pubkey* pk[2];
63 VERIFY_CHECK(ctx != NULL);
64 pk[0] = pk0; pk[1] = pk1;
65 for (i = 0; i < 2; i++) {
66 /* If the public key is NULL or invalid, xonly_pubkey_serialize will
67 * call the illegal_callback and return 0. In that case we will
68 * serialize the key as all zeros which is less than any valid public
69 * key. This results in consistent comparisons even if NULL or invalid
70 * pubkeys are involved and prevents edge cases such as sorting
71 * algorithms that use this function and do not terminate as a
73 if (!secp256k1_xonly_pubkey_serialize(ctx, out[i], pk[i])) {
74 /* Note that xonly_pubkey_serialize should already set the output to
75 * zero in that case, but it's not guaranteed by the API, we can't
76 * test it and writing a VERIFY_CHECK is more complex than
77 * explicitly memsetting (again). */
78 memset(out[i], 0, sizeof(out[i]));
81 return secp256k1_memcmp_var(out[0], out[1], sizeof(out[1]));
84 /** Keeps a group element as is if it has an even Y and otherwise negates it.
85 * y_parity is set to 0 in the former case and to 1 in the latter case.
86 * Requires that the coordinates of r are normalized. */
87 static int secp256k1_extrakeys_ge_even_y(secp256k1_ge *r) {
89 VERIFY_CHECK(!secp256k1_ge_is_infinity(r));
91 if (secp256k1_fe_is_odd(&r->y)) {
92 secp256k1_fe_negate(&r->y, &r->y, 1);
98 int secp256k1_xonly_pubkey_from_pubkey(const secp256k1_context* ctx, secp256k1_xonly_pubkey *xonly_pubkey, int *pk_parity, const secp256k1_pubkey *pubkey) {
102 VERIFY_CHECK(ctx != NULL);
103 ARG_CHECK(xonly_pubkey != NULL);
104 ARG_CHECK(pubkey != NULL);
106 if (!secp256k1_pubkey_load(ctx, &pk, pubkey)) {
109 tmp = secp256k1_extrakeys_ge_even_y(&pk);
110 if (pk_parity != NULL) {
113 secp256k1_xonly_pubkey_save(xonly_pubkey, &pk);
117 int secp256k1_xonly_pubkey_tweak_add(const secp256k1_context* ctx, secp256k1_pubkey *output_pubkey, const secp256k1_xonly_pubkey *internal_pubkey, const unsigned char *tweak32) {
120 VERIFY_CHECK(ctx != NULL);
121 ARG_CHECK(output_pubkey != NULL);
122 memset(output_pubkey, 0, sizeof(*output_pubkey));
123 ARG_CHECK(secp256k1_ecmult_context_is_built(&ctx->ecmult_ctx));
124 ARG_CHECK(internal_pubkey != NULL);
125 ARG_CHECK(tweak32 != NULL);
127 if (!secp256k1_xonly_pubkey_load(ctx, &pk, internal_pubkey)
128 || !secp256k1_ec_pubkey_tweak_add_helper(&ctx->ecmult_ctx, &pk, tweak32)) {
131 secp256k1_pubkey_save(output_pubkey, &pk);
135 int secp256k1_xonly_pubkey_tweak_add_check(const secp256k1_context* ctx, const unsigned char *tweaked_pubkey32, int tweaked_pk_parity, const secp256k1_xonly_pubkey *internal_pubkey, const unsigned char *tweak32) {
137 unsigned char pk_expected32[32];
139 VERIFY_CHECK(ctx != NULL);
140 ARG_CHECK(secp256k1_ecmult_context_is_built(&ctx->ecmult_ctx));
141 ARG_CHECK(internal_pubkey != NULL);
142 ARG_CHECK(tweaked_pubkey32 != NULL);
143 ARG_CHECK(tweak32 != NULL);
145 if (!secp256k1_xonly_pubkey_load(ctx, &pk, internal_pubkey)
146 || !secp256k1_ec_pubkey_tweak_add_helper(&ctx->ecmult_ctx, &pk, tweak32)) {
149 secp256k1_fe_normalize_var(&pk.x);
150 secp256k1_fe_normalize_var(&pk.y);
151 secp256k1_fe_get_b32(pk_expected32, &pk.x);
153 return secp256k1_memcmp_var(&pk_expected32, tweaked_pubkey32, 32) == 0
154 && secp256k1_fe_is_odd(&pk.y) == tweaked_pk_parity;
157 static void secp256k1_keypair_save(secp256k1_keypair *keypair, const secp256k1_scalar *sk, secp256k1_ge *pk) {
158 secp256k1_scalar_get_b32(&keypair->data[0], sk);
159 secp256k1_pubkey_save((secp256k1_pubkey *)&keypair->data[32], pk);
163 static int secp256k1_keypair_seckey_load(const secp256k1_context* ctx, secp256k1_scalar *sk, const secp256k1_keypair *keypair) {
166 ret = secp256k1_scalar_set_b32_seckey(sk, &keypair->data[0]);
167 /* We can declassify ret here because sk is only zero if a keypair function
168 * failed (which zeroes the keypair) and its return value is ignored. */
169 secp256k1_declassify(ctx, &ret, sizeof(ret));
174 /* Load a keypair into pk and sk (if non-NULL). This function declassifies pk
175 * and ARG_CHECKs that the keypair is not invalid. It always initializes sk and
176 * pk with dummy values. */
177 static int secp256k1_keypair_load(const secp256k1_context* ctx, secp256k1_scalar *sk, secp256k1_ge *pk, const secp256k1_keypair *keypair) {
179 const secp256k1_pubkey *pubkey = (const secp256k1_pubkey *)&keypair->data[32];
181 /* Need to declassify the pubkey because pubkey_load ARG_CHECKs if it's
183 secp256k1_declassify(ctx, pubkey, sizeof(*pubkey));
184 ret = secp256k1_pubkey_load(ctx, pk, pubkey);
186 ret = ret && secp256k1_keypair_seckey_load(ctx, sk, keypair);
189 *pk = secp256k1_ge_const_g;
191 *sk = secp256k1_scalar_one;
197 int secp256k1_keypair_create(const secp256k1_context* ctx, secp256k1_keypair *keypair, const unsigned char *seckey32) {
201 VERIFY_CHECK(ctx != NULL);
202 ARG_CHECK(keypair != NULL);
203 memset(keypair, 0, sizeof(*keypair));
204 ARG_CHECK(secp256k1_ecmult_gen_context_is_built(&ctx->ecmult_gen_ctx));
205 ARG_CHECK(seckey32 != NULL);
207 ret = secp256k1_ec_pubkey_create_helper(&ctx->ecmult_gen_ctx, &sk, &pk, seckey32);
208 secp256k1_keypair_save(keypair, &sk, &pk);
209 secp256k1_memczero(keypair, sizeof(*keypair), !ret);
211 secp256k1_scalar_clear(&sk);
215 int secp256k1_keypair_sec(const secp256k1_context* ctx, unsigned char *seckey, const secp256k1_keypair *keypair) {
216 VERIFY_CHECK(ctx != NULL);
217 ARG_CHECK(seckey != NULL);
218 memset(seckey, 0, 32);
219 ARG_CHECK(keypair != NULL);
221 memcpy(seckey, &keypair->data[0], 32);
225 int secp256k1_keypair_pub(const secp256k1_context* ctx, secp256k1_pubkey *pubkey, const secp256k1_keypair *keypair) {
226 VERIFY_CHECK(ctx != NULL);
227 ARG_CHECK(pubkey != NULL);
228 memset(pubkey, 0, sizeof(*pubkey));
229 ARG_CHECK(keypair != NULL);
231 memcpy(pubkey->data, &keypair->data[32], sizeof(*pubkey));
235 int secp256k1_keypair_xonly_pub(const secp256k1_context* ctx, secp256k1_xonly_pubkey *pubkey, int *pk_parity, const secp256k1_keypair *keypair) {
239 VERIFY_CHECK(ctx != NULL);
240 ARG_CHECK(pubkey != NULL);
241 memset(pubkey, 0, sizeof(*pubkey));
242 ARG_CHECK(keypair != NULL);
244 if (!secp256k1_keypair_load(ctx, NULL, &pk, keypair)) {
247 tmp = secp256k1_extrakeys_ge_even_y(&pk);
248 if (pk_parity != NULL) {
251 secp256k1_xonly_pubkey_save(pubkey, &pk);
256 int secp256k1_keypair_xonly_tweak_add(const secp256k1_context* ctx, secp256k1_keypair *keypair, const unsigned char *tweak32) {
262 VERIFY_CHECK(ctx != NULL);
263 ARG_CHECK(secp256k1_ecmult_context_is_built(&ctx->ecmult_ctx));
264 ARG_CHECK(keypair != NULL);
265 ARG_CHECK(tweak32 != NULL);
267 ret = secp256k1_keypair_load(ctx, &sk, &pk, keypair);
268 memset(keypair, 0, sizeof(*keypair));
270 y_parity = secp256k1_extrakeys_ge_even_y(&pk);
272 secp256k1_scalar_negate(&sk, &sk);
275 ret &= secp256k1_ec_seckey_tweak_add_helper(&sk, tweak32);
276 ret &= secp256k1_ec_pubkey_tweak_add_helper(&ctx->ecmult_ctx, &pk, tweak32);
278 secp256k1_declassify(ctx, &ret, sizeof(ret));
280 secp256k1_keypair_save(keypair, &sk, &pk);
283 secp256k1_scalar_clear(&sk);