Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
secp256k1.c
Go to the documentation of this file.
1/***********************************************************************
2 * Copyright (c) 2013-2015 Pieter Wuille *
3 * Distributed under the MIT software license, see the accompanying *
4 * file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5 ***********************************************************************/
6
7#include "include/secp256k1.h"
9
10#include "assumptions.h"
11#include "util.h"
12#include "field_impl.h"
13#include "scalar_impl.h"
14#include "group_impl.h"
15#include "ecmult_impl.h"
16#include "ecmult_const_impl.h"
17#include "ecmult_gen_impl.h"
18#include "ecdsa_impl.h"
19#include "eckey_impl.h"
20#include "hash_impl.h"
21#include "scratch_impl.h"
22#include "selftest.h"
23
24#if defined(VALGRIND)
25# include <valgrind/memcheck.h>
26#endif
27
28#define ARG_CHECK(cond) do { \
29 if (EXPECT(!(cond), 0)) { \
30 secp256k1_callback_call(&ctx->illegal_callback, #cond); \
31 return 0; \
32 } \
33} while(0)
34
35#define ARG_CHECK_NO_RETURN(cond) do { \
36 if (EXPECT(!(cond), 0)) { \
37 secp256k1_callback_call(&ctx->illegal_callback, #cond); \
38 } \
39} while(0)
40
41#ifndef USE_EXTERNAL_DEFAULT_CALLBACKS
42#include <stdlib.h>
43#include <stdio.h>
44static void secp256k1_default_illegal_callback_fn(const char* str, void* data) {
45 (void)data;
46 fprintf(stderr, "[libsecp256k1] illegal argument: %s\n", str);
47 abort();
48}
49static void secp256k1_default_error_callback_fn(const char* str, void* data) {
50 (void)data;
51 fprintf(stderr, "[libsecp256k1] internal consistency check failed: %s\n", str);
52 abort();
53}
54#else
55void secp256k1_default_illegal_callback_fn(const char* str, void* data);
56void secp256k1_default_error_callback_fn(const char* str, void* data);
57#endif
58
63
68
76
85
87 size_t ret = ROUND_TO_ALIGN(sizeof(secp256k1_context));
88 /* A return value of 0 is reserved as an indicator for errors when we call this function internally. */
89 VERIFY_CHECK(ret != 0);
90
93 "Invalid flags");
94 return 0;
95 }
96
99 }
102 }
103 return ret;
104}
105
117
119 void* const base = prealloc;
120 size_t prealloc_size;
122
123 if (!secp256k1_selftest()) {
125 }
126
128 if (prealloc_size == 0) {
129 return NULL;
130 }
133 ret->illegal_callback = default_illegal_callback;
134 ret->error_callback = default_error_callback;
135
137 secp256k1_ecmult_gen_context_init(&ret->ecmult_gen_ctx);
138
139 /* Flags have been checked by secp256k1_context_preallocated_size. */
143 }
146 }
148
149 return (secp256k1_context*) ret;
150}
151
162
176
187
195
202
203void secp256k1_context_set_illegal_callback(secp256k1_context* ctx, void (*fun)(const char* message, void* data), const void* data) {
205 if (fun == NULL) {
207 }
209 ctx->illegal_callback.data = data;
210}
211
212void secp256k1_context_set_error_callback(secp256k1_context* ctx, void (*fun)(const char* message, void* data), const void* data) {
214 if (fun == NULL) {
216 }
218 ctx->error_callback.data = data;
219}
220
225
230
231/* Mark memory as no-longer-secret for the purpose of analysing constant-time behaviour
232 * of the software. This is setup for use with valgrind but could be substituted with
233 * the appropriate instrumentation for other analysis tools.
234 */
235static SECP256K1_INLINE void secp256k1_declassify(const secp256k1_context* ctx, const void *p, size_t len) {
236#if defined(VALGRIND)
238#else
239 (void)ctx;
240 (void)p;
241 (void)len;
242#endif
243}
244
246 if (sizeof(secp256k1_ge_storage) == 64) {
247 /* When the secp256k1_ge_storage type is exactly 64 byte, use its
248 * representation inside secp256k1_pubkey, as conversion is very fast.
249 * Note that secp256k1_pubkey_save must use the same representation. */
251 memcpy(&s, &pubkey->data[0], sizeof(s));
253 } else {
254 /* Otherwise, fall back to 32-byte big endian for X and Y. */
255 secp256k1_fe x, y;
256 secp256k1_fe_set_b32(&x, pubkey->data);
257 secp256k1_fe_set_b32(&y, pubkey->data + 32);
258 secp256k1_ge_set_xy(ge, &x, &y);
259 }
261 return 1;
262}
263
265 if (sizeof(secp256k1_ge_storage) == 64) {
268 memcpy(&pubkey->data[0], &s, sizeof(s));
269 } else {
273 secp256k1_fe_get_b32(pubkey->data, &ge->x);
274 secp256k1_fe_get_b32(pubkey->data + 32, &ge->y);
275 }
276}
277
278int secp256k1_ec_pubkey_parse(const secp256k1_context* ctx, secp256k1_pubkey* pubkey, const unsigned char *input, size_t inputlen) {
280
282 ARG_CHECK(pubkey != NULL);
283 memset(pubkey, 0, sizeof(*pubkey));
284 ARG_CHECK(input != NULL);
285 if (!secp256k1_eckey_pubkey_parse(&Q, input, inputlen)) {
286 return 0;
287 }
289 return 0;
290 }
291 secp256k1_pubkey_save(pubkey, &Q);
293 return 1;
294}
295
296int secp256k1_ec_pubkey_serialize(const secp256k1_context* ctx, unsigned char *output, size_t *outputlen, const secp256k1_pubkey* pubkey, unsigned int flags) {
298 size_t len;
299 int ret = 0;
300
304 len = *outputlen;
305 *outputlen = 0;
306 ARG_CHECK(output != NULL);
307 memset(output, 0, len);
308 ARG_CHECK(pubkey != NULL);
310 if (secp256k1_pubkey_load(ctx, &Q, pubkey)) {
312 if (ret) {
313 *outputlen = len;
314 }
315 }
316 return ret;
317}
318
320 unsigned char out[2][33];
321 const secp256k1_pubkey* pk[2];
322 int i;
323
325 pk[0] = pubkey0; pk[1] = pubkey1;
326 for (i = 0; i < 2; i++) {
327 size_t out_size = sizeof(out[i]);
328 /* If the public key is NULL or invalid, ec_pubkey_serialize will call
329 * the illegal_callback and return 0. In that case we will serialize the
330 * key as all zeros which is less than any valid public key. This
331 * results in consistent comparisons even if NULL or invalid pubkeys are
332 * involved and prevents edge cases such as sorting algorithms that use
333 * this function and do not terminate as a result. */
335 /* Note that ec_pubkey_serialize should already set the output to
336 * zero in that case, but it's not guaranteed by the API, we can't
337 * test it and writing a VERIFY_CHECK is more complex than
338 * explicitly memsetting (again). */
339 memset(out[i], 0, sizeof(out[i]));
340 }
341 }
342 return secp256k1_memcmp_var(out[0], out[1], sizeof(out[0]));
343}
344
346 (void)ctx;
347 if (sizeof(secp256k1_scalar) == 32) {
348 /* When the secp256k1_scalar type is exactly 32 byte, use its
349 * representation inside secp256k1_ecdsa_signature, as conversion is very fast.
350 * Note that secp256k1_ecdsa_signature_save must use the same representation. */
351 memcpy(r, &sig->data[0], 32);
352 memcpy(s, &sig->data[32], 32);
353 } else {
354 secp256k1_scalar_set_b32(r, &sig->data[0], NULL);
355 secp256k1_scalar_set_b32(s, &sig->data[32], NULL);
356 }
357}
358
360 if (sizeof(secp256k1_scalar) == 32) {
361 memcpy(&sig->data[0], r, 32);
362 memcpy(&sig->data[32], s, 32);
363 } else {
364 secp256k1_scalar_get_b32(&sig->data[0], r);
365 secp256k1_scalar_get_b32(&sig->data[32], s);
366 }
367}
368
370 secp256k1_scalar r, s;
371
373 ARG_CHECK(sig != NULL);
374 ARG_CHECK(input != NULL);
375
376 if (secp256k1_ecdsa_sig_parse(&r, &s, input, inputlen)) {
378 return 1;
379 } else {
380 memset(sig, 0, sizeof(*sig));
381 return 0;
382 }
383}
384
386 secp256k1_scalar r, s;
387 int ret = 1;
388 int overflow = 0;
389
391 ARG_CHECK(sig != NULL);
393
395 ret &= !overflow;
397 ret &= !overflow;
398 if (ret) {
400 } else {
401 memset(sig, 0, sizeof(*sig));
402 }
403 return ret;
404}
405
407 secp256k1_scalar r, s;
408
410 ARG_CHECK(output != NULL);
412 ARG_CHECK(sig != NULL);
413
415 return secp256k1_ecdsa_sig_serialize(output, outputlen, &r, &s);
416}
417
430
432 secp256k1_scalar r, s;
433 int ret = 0;
434
436 ARG_CHECK(sigin != NULL);
437
440 if (sigout != NULL) {
441 if (ret) {
443 }
445 }
446
447 return ret;
448}
449
466
467static SECP256K1_INLINE void buffer_append(unsigned char *buf, unsigned int *offset, const void *data, unsigned int len) {
468 memcpy(buf + *offset, data, len);
469 *offset += len;
470}
471
472static int nonce_function_rfc6979(unsigned char *nonce32, const unsigned char *msg32, const unsigned char *key32, const unsigned char *algo16, void *data, unsigned int counter) {
473 unsigned char keydata[112];
474 unsigned int offset = 0;
476 unsigned int i;
477 /* We feed a byte array to the PRNG as input, consisting of:
478 * - the private key (32 bytes) and message (32 bytes), see RFC 6979 3.2d.
479 * - optionally 32 extra bytes of data, see RFC 6979 3.6 Additional Data.
480 * - optionally 16 extra bytes with the algorithm name.
481 * Because the arguments have distinct fixed lengths it is not possible for
482 * different argument mixtures to emulate each other and result in the same
483 * nonces.
484 */
485 buffer_append(keydata, &offset, key32, 32);
486 buffer_append(keydata, &offset, msg32, 32);
487 if (data != NULL) {
488 buffer_append(keydata, &offset, data, 32);
489 }
490 if (algo16 != NULL) {
491 buffer_append(keydata, &offset, algo16, 16);
492 }
494 memset(keydata, 0, sizeof(keydata));
495 for (i = 0; i <= counter; i++) {
497 }
499 return 1;
500}
501
504
505static int secp256k1_ecdsa_sign_inner(const secp256k1_context* ctx, secp256k1_scalar* r, secp256k1_scalar* s, int* recid, const unsigned char *msg32, const unsigned char *seckey, secp256k1_nonce_function noncefp, const unsigned char algo16[17], const void* noncedata) {
507 int ret = 0;
508 int is_sec_valid;
509 unsigned char nonce32[32];
510 unsigned int count = 0;
511 /* Default initialization here is important so we won't pass uninit values to the cmov in the end */
514 if (recid) {
515 *recid = 0;
516 }
517 if (noncefp == NULL) {
519 }
520
521 /* Fail if the secret key is invalid. */
525 while (1) {
526 int is_nonce_valid;
527 ret = !!noncefp(nonce32, msg32, seckey, algo16, (void*)noncedata, count);
528 if (!ret) {
529 break;
530 }
532 /* The nonce is still secret here, but it being invalid is is less likely than 1:2^255. */
534 if (is_nonce_valid) {
536 /* The final signature is no longer a secret, nor is the fact that we were successful or not. */
537 secp256k1_declassify(ctx, &ret, sizeof(ret));
538 if (ret) {
539 break;
540 }
541 }
542 count++;
543 }
544 /* We don't want to declassify is_sec_valid and therefore the range of
545 * seckey. As a result is_sec_valid is included in ret only after ret was
546 * used as a branching variable. */
547 ret &= is_sec_valid;
548 memset(nonce32, 0, 32);
554 if (recid) {
555 const int zero = 0;
556 secp256k1_int_cmov(recid, &zero, !ret);
557 }
558 return ret;
559}
560
561int secp256k1_ecdsa_sign(const secp256k1_context* ctx, secp256k1_ecdsa_signature *signature, const unsigned char *msghash32, const unsigned char *seckey, secp256k1_nonce_function noncefp, const void* noncedata) {
562 secp256k1_scalar r, s;
563 int ret;
564 const unsigned char secp256k1_ecdsa_der_algo16[17] = "ECDSA+DER ";
568 ARG_CHECK(signature != NULL);
570
572 secp256k1_ecdsa_signature_save(signature, &r, &s);
573 return ret;
574}
575
576int secp256k1_ec_seckey_verify(const secp256k1_context* ctx, const unsigned char *seckey) {
578 int ret;
581
584 return ret;
585}
586
598
599int secp256k1_ec_pubkey_create(const secp256k1_context* ctx, secp256k1_pubkey *pubkey, const unsigned char *seckey) {
602 int ret = 0;
604 ARG_CHECK(pubkey != NULL);
605 memset(pubkey, 0, sizeof(*pubkey));
608
610 secp256k1_pubkey_save(pubkey, &p);
611 secp256k1_memczero(pubkey, sizeof(*pubkey), !ret);
612
614 return ret;
615}
616
631
635
637 int ret = 0;
640 ARG_CHECK(pubkey != NULL);
641
642 ret = secp256k1_pubkey_load(ctx, &p, pubkey);
643 memset(pubkey, 0, sizeof(*pubkey));
644 if (ret) {
645 secp256k1_ge_neg(&p, &p);
646 secp256k1_pubkey_save(pubkey, &p);
647 }
648 return ret;
649}
650
651
662
678
679int secp256k1_ec_privkey_tweak_add(const secp256k1_context* ctx, unsigned char *seckey, const unsigned char *tweak32) {
681}
682
683static int secp256k1_ec_pubkey_tweak_add_helper(const secp256k1_ecmult_context* ecmult_ctx, secp256k1_ge *p, const unsigned char *tweak32) {
685 int overflow = 0;
687 return !overflow && secp256k1_eckey_pubkey_tweak_add(ecmult_ctx, p, &term);
688}
689
692 int ret = 0;
695 ARG_CHECK(pubkey != NULL);
697
698 ret = secp256k1_pubkey_load(ctx, &p, pubkey);
699 memset(pubkey, 0, sizeof(*pubkey));
701 if (ret) {
702 secp256k1_pubkey_save(pubkey, &p);
703 }
704
705 return ret;
706}
707
727
728int secp256k1_ec_privkey_tweak_mul(const secp256k1_context* ctx, unsigned char *seckey, const unsigned char *tweak32) {
730}
731
734 secp256k1_scalar factor;
735 int ret = 0;
736 int overflow = 0;
739 ARG_CHECK(pubkey != NULL);
741
743 ret = !overflow && secp256k1_pubkey_load(ctx, &p, pubkey);
744 memset(pubkey, 0, sizeof(*pubkey));
745 if (ret) {
747 secp256k1_pubkey_save(pubkey, &p);
748 } else {
749 ret = 0;
750 }
751 }
752
753 return ret;
754}
755
763
765 size_t i;
768
770 memset(pubnonce, 0, sizeof(*pubnonce));
771 ARG_CHECK(n >= 1);
773
775
776 for (i = 0; i < n; i++) {
779 }
781 return 0;
782 }
785 return 1;
786}
787
788int secp256k1_tagged_sha256(const secp256k1_context* ctx, unsigned char *hash32, const unsigned char *tag, size_t taglen, const unsigned char *msg, size_t msglen) {
792 ARG_CHECK(tag != NULL);
793 ARG_CHECK(msg != NULL);
794
796 secp256k1_sha256_write(&sha, msg, msglen);
798 return 1;
799}
800
801#ifdef ENABLE_MODULE_ECDH
802# include "modules/ecdh/main_impl.h"
803#endif
804
805#ifdef ENABLE_MODULE_MULTISET
807#endif
808
809#ifdef ENABLE_MODULE_RECOVERY
811#endif
812
813#ifdef ENABLE_MODULE_SCHNORR
815#endif
816
817#ifdef ENABLE_MODULE_EXTRAKEYS
819#endif
820
821#ifdef ENABLE_MODULE_SCHNORRSIG
823#endif
secp256k1_context * ctx
int flags
static int secp256k1_ecdsa_sig_serialize(unsigned char *sig, size_t *size, const secp256k1_scalar *r, const secp256k1_scalar *s)
static int secp256k1_ecdsa_sig_sign(const secp256k1_ecmult_gen_context *ctx, secp256k1_scalar *r, secp256k1_scalar *s, const secp256k1_scalar *seckey, const secp256k1_scalar *message, const secp256k1_scalar *nonce, int *recid)
static int secp256k1_ecdsa_sig_verify(const secp256k1_ecmult_context *ctx, const secp256k1_scalar *r, const secp256k1_scalar *s, const secp256k1_ge *pubkey, const secp256k1_scalar *message)
static int secp256k1_ecdsa_sig_parse(secp256k1_scalar *r, secp256k1_scalar *s, const unsigned char *sig, size_t size)
static int secp256k1_eckey_pubkey_tweak_mul(const secp256k1_ecmult_context *ctx, secp256k1_ge *key, const secp256k1_scalar *tweak)
static int secp256k1_eckey_privkey_tweak_add(secp256k1_scalar *key, const secp256k1_scalar *tweak)
static int secp256k1_eckey_privkey_tweak_mul(secp256k1_scalar *key, const secp256k1_scalar *tweak)
static int secp256k1_eckey_pubkey_tweak_add(const secp256k1_ecmult_context *ctx, secp256k1_ge *key, const secp256k1_scalar *tweak)
static int secp256k1_eckey_pubkey_parse(secp256k1_ge *elem, const unsigned char *pub, size_t size)
static int secp256k1_eckey_pubkey_serialize(secp256k1_ge *elem, unsigned char *pub, size_t *size, int compressed)
static void secp256k1_ecmult_context_clear(secp256k1_ecmult_context *ctx)
static void secp256k1_ecmult_context_init(secp256k1_ecmult_context *ctx)
static int secp256k1_ecmult_context_is_built(const secp256k1_ecmult_context *ctx)
static void secp256k1_ecmult_context_finalize_memcpy(secp256k1_ecmult_context *dst, const secp256k1_ecmult_context *src)
static void secp256k1_ecmult_context_build(secp256k1_ecmult_context *ctx, void **prealloc)
static void secp256k1_ecmult_gen_context_clear(secp256k1_ecmult_gen_context *ctx)
static void secp256k1_ecmult_gen(const secp256k1_ecmult_gen_context *ctx, secp256k1_gej *r, const secp256k1_scalar *a)
Multiply with the generator: R = a*G.
static void secp256k1_ecmult_gen_blind(secp256k1_ecmult_gen_context *ctx, const unsigned char *seed32)
static void secp256k1_ecmult_gen_context_init(secp256k1_ecmult_gen_context *ctx)
static int secp256k1_ecmult_gen_context_is_built(const secp256k1_ecmult_gen_context *ctx)
static void secp256k1_ecmult_gen_context_build(secp256k1_ecmult_gen_context *ctx, void **prealloc)
static void secp256k1_ecmult_gen_context_finalize_memcpy(secp256k1_ecmult_gen_context *dst, const secp256k1_ecmult_gen_context *src)
static const size_t SECP256K1_ECMULT_GEN_CONTEXT_PREALLOCATED_SIZE
static const size_t SECP256K1_ECMULT_CONTEXT_PREALLOCATED_SIZE
static void secp256k1_fe_normalize_var(secp256k1_fe *r)
Normalize a field element, without constant-time guarantee.
static int secp256k1_fe_set_b32(secp256k1_fe *r, const unsigned char *a)
Set a field element equal to 32-byte big endian value.
static int secp256k1_fe_is_zero(const secp256k1_fe *a)
Verify whether a field element is zero.
static void secp256k1_fe_get_b32(unsigned char *r, const secp256k1_fe *a)
Convert a field element to a 32-byte big endian value.
static void secp256k1_gej_set_infinity(secp256k1_gej *r)
Set a group element (jacobian) equal to the point at infinity.
static int secp256k1_gej_is_infinity(const secp256k1_gej *a)
Check whether a group element is the point at infinity.
static void secp256k1_ge_clear(secp256k1_ge *r)
Clear a secp256k1_ge to prevent leaking sensitive information.
static void secp256k1_ge_set_xy(secp256k1_ge *r, const secp256k1_fe *x, const secp256k1_fe *y)
Set a group element equal to the point with given X and Y coordinates.
static void secp256k1_gej_add_ge(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b)
Set r equal to the sum of a and b (with b given in affine coordinates, and not infinity).
static void secp256k1_ge_from_storage(secp256k1_ge *r, const secp256k1_ge_storage *a)
Convert a group element back from the storage type.
static void secp256k1_ge_set_gej(secp256k1_ge *r, secp256k1_gej *a)
Set a group element equal to another which is given in jacobian coordinates.
static int secp256k1_ge_is_in_correct_subgroup(const secp256k1_ge *ge)
Determine if a point (which is assumed to be on the curve) is in the correct (sub)group of the curve.
static void secp256k1_ge_neg(secp256k1_ge *r, const secp256k1_ge *a)
Set r equal to the inverse of a (i.e., mirrored around the X axis)
static int secp256k1_ge_is_infinity(const secp256k1_ge *a)
Check whether a group element is the point at infinity.
static void secp256k1_ge_to_storage(secp256k1_ge_storage *r, const secp256k1_ge *a)
Convert a group element to the storage type.
static void secp256k1_sha256_initialize_tagged(secp256k1_sha256 *hash, const unsigned char *tag, size_t taglen)
Definition hash_impl.h:169
SchnorrSig sig
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85
static void secp256k1_scalar_cmov(secp256k1_scalar *r, const secp256k1_scalar *a, int flag)
If flag is true, set *r equal to *a; otherwise leave it.
static void secp256k1_scalar_set_b32(secp256k1_scalar *r, const unsigned char *bin, int *overflow)
Set a scalar from a big endian byte array.
static int secp256k1_scalar_set_b32_seckey(secp256k1_scalar *r, const unsigned char *bin)
Set a scalar from a big endian byte array and returns 1 if it is a valid seckey and 0 otherwise.
static void secp256k1_scalar_get_b32(unsigned char *bin, const secp256k1_scalar *a)
Convert a scalar to a byte array.
static void secp256k1_scalar_negate(secp256k1_scalar *r, const secp256k1_scalar *a)
Compute the complement of a scalar (modulo the group order).
static int secp256k1_scalar_is_high(const secp256k1_scalar *a)
Check whether a scalar is higher than the group order divided by 2.
static void secp256k1_scalar_clear(secp256k1_scalar *r)
Clear a scalar to prevent the leak of sensitive data.
static const secp256k1_scalar secp256k1_scalar_zero
Definition scalar_impl.h:32
static const secp256k1_scalar secp256k1_scalar_one
Definition scalar_impl.h:31
static void secp256k1_scratch_destroy(const secp256k1_callback *error_callback, secp256k1_scratch *scratch)
static secp256k1_scratch * secp256k1_scratch_create(const secp256k1_callback *error_callback, size_t max_size)
static void secp256k1_rfc6979_hmac_sha256_generate(secp256k1_rfc6979_hmac_sha256 *rng, unsigned char *out, size_t outlen)
static void secp256k1_sha256_finalize(secp256k1_sha256 *hash, unsigned char *out32)
static void secp256k1_rfc6979_hmac_sha256_initialize(secp256k1_rfc6979_hmac_sha256 *rng, const unsigned char *key, size_t keylen)
static void secp256k1_rfc6979_hmac_sha256_finalize(secp256k1_rfc6979_hmac_sha256 *rng)
static void secp256k1_sha256_write(secp256k1_sha256 *hash, const unsigned char *data, size_t size)
static SECP256K1_INLINE int secp256k1_memcmp_var(const void *s1, const void *s2, size_t n)
Semantics like memcmp.
Definition util.h:224
static SECP256K1_INLINE void * manual_alloc(void **prealloc_ptr, size_t alloc_size, void *base, size_t max_size)
Definition util.h:134
static SECP256K1_INLINE void secp256k1_int_cmov(int *r, const int *a, int flag)
If flag is true, set *r equal to *a; otherwise leave it.
Definition util.h:238
#define EXPECT(x, c)
Definition util.h:43
#define ROUND_TO_ALIGN(size)
Definition util.h:116
#define VERIFY_CHECK(cond)
Definition util.h:68
static SECP256K1_INLINE void * checked_malloc(const secp256k1_callback *cb, size_t size)
Definition util.h:91
static SECP256K1_INLINE void secp256k1_memczero(void *s, size_t len, int flag)
Definition util.h:205
static SECP256K1_INLINE void secp256k1_callback_call(const secp256k1_callback *const cb, const char *const text)
Definition util.h:24
int secp256k1_ec_privkey_tweak_add(const secp256k1_context *ctx, unsigned char *seckey, const unsigned char *tweak32)
Same as secp256k1_ec_seckey_tweak_add, but DEPRECATED.
Definition secp256k1.c:679
int secp256k1_ec_privkey_negate(const secp256k1_context *ctx, unsigned char *seckey)
Same as secp256k1_ec_seckey_negate, but DEPRECATED.
Definition secp256k1.c:632
const secp256k1_nonce_function secp256k1_nonce_function_default
A default safe nonce generation function (currently equal to secp256k1_nonce_function_rfc6979).
Definition secp256k1.c:503
secp256k1_context * secp256k1_context_preallocated_clone(const secp256k1_context *ctx, void *prealloc)
Copy a secp256k1 context object into caller-provided memory.
Definition secp256k1.c:163
const secp256k1_nonce_function secp256k1_nonce_function_rfc6979
An implementation of RFC6979 (using HMAC-SHA256) as nonce generation function.
Definition secp256k1.c:502
int secp256k1_tagged_sha256(const secp256k1_context *ctx, unsigned char *hash32, const unsigned char *tag, size_t taglen, const unsigned char *msg, size_t msglen)
Compute a tagged hash as defined in BIP-340.
Definition secp256k1.c:788
int secp256k1_ec_pubkey_tweak_add(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const unsigned char *tweak32)
Tweak a public key by adding tweak times the generator to it.
Definition secp256k1.c:690
int secp256k1_ec_pubkey_serialize(const secp256k1_context *ctx, unsigned char *output, size_t *outputlen, const secp256k1_pubkey *pubkey, unsigned int flags)
Serialize a pubkey object into a serialized byte sequence.
Definition secp256k1.c:296
int secp256k1_ecdsa_signature_serialize_der(const secp256k1_context *ctx, unsigned char *output, size_t *outputlen, const secp256k1_ecdsa_signature *sig)
Serialize an ECDSA signature in DER format.
Definition secp256k1.c:406
static int secp256k1_ec_seckey_tweak_add_helper(secp256k1_scalar *sec, const unsigned char *tweak32)
Definition secp256k1.c:652
int secp256k1_ec_seckey_tweak_mul(const secp256k1_context *ctx, unsigned char *seckey, const unsigned char *tweak32)
Tweak a secret key by multiplying it by a tweak.
Definition secp256k1.c:708
int secp256k1_ec_pubkey_parse(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const unsigned char *input, size_t inputlen)
Parse a variable-length public key into the pubkey object.
Definition secp256k1.c:278
size_t secp256k1_context_preallocated_clone_size(const secp256k1_context *ctx)
Determine the memory size of a secp256k1 context object to be copied into caller-provided memory.
Definition secp256k1.c:106
static int secp256k1_ecdsa_sign_inner(const secp256k1_context *ctx, secp256k1_scalar *r, secp256k1_scalar *s, int *recid, const unsigned char *msg32, const unsigned char *seckey, secp256k1_nonce_function noncefp, const unsigned char algo16[17], const void *noncedata)
Definition secp256k1.c:505
static void secp256k1_default_error_callback_fn(const char *str, void *data)
Definition secp256k1.c:49
int secp256k1_ec_seckey_verify(const secp256k1_context *ctx, const unsigned char *seckey)
Verify an ECDSA secret key.
Definition secp256k1.c:576
const secp256k1_context * secp256k1_context_no_precomp
A simple secp256k1 context object with no precomputed tables.
Definition secp256k1.c:84
int secp256k1_ec_seckey_tweak_add(const secp256k1_context *ctx, unsigned char *seckey, const unsigned char *tweak32)
Tweak a secret key by adding tweak to it.
Definition secp256k1.c:663
void secp256k1_context_preallocated_destroy(secp256k1_context *ctx)
Destroy a secp256k1 context object that has been created in caller-provided memory.
Definition secp256k1.c:188
#define ARG_CHECK(cond)
Definition secp256k1.c:28
static int secp256k1_ec_pubkey_create_helper(const secp256k1_ecmult_gen_context *ecmult_gen_ctx, secp256k1_scalar *seckey_scalar, secp256k1_ge *p, const unsigned char *seckey)
Definition secp256k1.c:587
int secp256k1_ecdsa_signature_normalize(const secp256k1_context *ctx, secp256k1_ecdsa_signature *sigout, const secp256k1_ecdsa_signature *sigin)
Convert a signature to a normalized lower-S form.
Definition secp256k1.c:431
void secp256k1_context_set_error_callback(secp256k1_context *ctx, void(*fun)(const char *message, void *data), const void *data)
Set a callback function to be called when an internal consistency check fails.
Definition secp256k1.c:212
static const secp256k1_callback default_error_callback
Definition secp256k1.c:64
int secp256k1_ecdsa_signature_parse_der(const secp256k1_context *ctx, secp256k1_ecdsa_signature *sig, const unsigned char *input, size_t inputlen)
Parse a DER ECDSA signature.
Definition secp256k1.c:369
static int secp256k1_ec_pubkey_tweak_add_helper(const secp256k1_ecmult_context *ecmult_ctx, secp256k1_ge *p, const unsigned char *tweak32)
Definition secp256k1.c:683
static SECP256K1_INLINE void secp256k1_declassify(const secp256k1_context *ctx, const void *p, size_t len)
Definition secp256k1.c:235
secp256k1_context * secp256k1_context_create(unsigned int flags)
Create a secp256k1 context object (in dynamically allocated memory).
Definition secp256k1.c:152
int secp256k1_ec_seckey_negate(const secp256k1_context *ctx, unsigned char *seckey)
Negates a secret key in place.
Definition secp256k1.c:617
int secp256k1_ec_pubkey_cmp(const secp256k1_context *ctx, const secp256k1_pubkey *pubkey0, const secp256k1_pubkey *pubkey1)
Compare two public keys using lexicographic (of compressed serialization) order.
Definition secp256k1.c:319
int secp256k1_ec_pubkey_combine(const secp256k1_context *ctx, secp256k1_pubkey *pubnonce, const secp256k1_pubkey *const *pubnonces, size_t n)
Add a number of public keys together.
Definition secp256k1.c:764
int secp256k1_ecdsa_signature_parse_compact(const secp256k1_context *ctx, secp256k1_ecdsa_signature *sig, const unsigned char *input64)
Parse an ECDSA signature in compact (64 bytes) format.
Definition secp256k1.c:385
void secp256k1_context_set_illegal_callback(secp256k1_context *ctx, void(*fun)(const char *message, void *data), const void *data)
Set a callback function to be called when an illegal argument is passed to an API call.
Definition secp256k1.c:203
static void secp256k1_ecdsa_signature_save(secp256k1_ecdsa_signature *sig, const secp256k1_scalar *r, const secp256k1_scalar *s)
Definition secp256k1.c:359
static int secp256k1_pubkey_load(const secp256k1_context *ctx, secp256k1_ge *ge, const secp256k1_pubkey *pubkey)
Definition secp256k1.c:245
size_t secp256k1_context_preallocated_size(unsigned int flags)
Determine the memory size of a secp256k1 context object to be created in caller-provided memory.
Definition secp256k1.c:86
static void secp256k1_pubkey_save(secp256k1_pubkey *pubkey, secp256k1_ge *ge)
Definition secp256k1.c:264
static SECP256K1_INLINE void buffer_append(unsigned char *buf, unsigned int *offset, const void *data, unsigned int len)
Definition secp256k1.c:467
static void secp256k1_default_illegal_callback_fn(const char *str, void *data)
Definition secp256k1.c:44
#define ARG_CHECK_NO_RETURN(cond)
Definition secp256k1.c:35
static int nonce_function_rfc6979(unsigned char *nonce32, const unsigned char *msg32, const unsigned char *key32, const unsigned char *algo16, void *data, unsigned int counter)
Definition secp256k1.c:472
static const secp256k1_context secp256k1_context_no_precomp_
Definition secp256k1.c:77
int secp256k1_context_randomize(secp256k1_context *ctx, const unsigned char *seed32)
Updates the context randomization to protect against side-channel leakage.
Definition secp256k1.c:756
secp256k1_scratch_space * secp256k1_scratch_space_create(const secp256k1_context *ctx, size_t max_size)
Create a secp256k1 scratch space object.
Definition secp256k1.c:221
int secp256k1_ecdsa_verify(const secp256k1_context *ctx, const secp256k1_ecdsa_signature *sig, const unsigned char *msghash32, const secp256k1_pubkey *pubkey)
Verify an ECDSA signature.
Definition secp256k1.c:450
int secp256k1_ecdsa_signature_serialize_compact(const secp256k1_context *ctx, unsigned char *output64, const secp256k1_ecdsa_signature *sig)
Serialize an ECDSA signature in compact (64 byte) format.
Definition secp256k1.c:418
int secp256k1_ec_pubkey_create(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const unsigned char *seckey)
Compute the public key for a secret key.
Definition secp256k1.c:599
void secp256k1_context_destroy(secp256k1_context *ctx)
Destroy a secp256k1 context object (created in dynamically allocated memory).
Definition secp256k1.c:196
secp256k1_context * secp256k1_context_clone(const secp256k1_context *ctx)
Copy a secp256k1 context object (into dynamically allocated memory).
Definition secp256k1.c:177
void secp256k1_scratch_space_destroy(const secp256k1_context *ctx, secp256k1_scratch_space *scratch)
Destroy a secp256k1 scratch space.
Definition secp256k1.c:226
int secp256k1_ec_pubkey_tweak_mul(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const unsigned char *tweak32)
Tweak a public key by multiplying it by a tweak value.
Definition secp256k1.c:732
static void secp256k1_ecdsa_signature_load(const secp256k1_context *ctx, secp256k1_scalar *r, secp256k1_scalar *s, const secp256k1_ecdsa_signature *sig)
Definition secp256k1.c:345
secp256k1_context * secp256k1_context_preallocated_create(void *prealloc, unsigned int flags)
Create a secp256k1 context object in caller-provided memory.
Definition secp256k1.c:118
int secp256k1_ecdsa_sign(const secp256k1_context *ctx, secp256k1_ecdsa_signature *signature, const unsigned char *msghash32, const unsigned char *seckey, secp256k1_nonce_function noncefp, const void *noncedata)
Create an ECDSA signature.
Definition secp256k1.c:561
static const secp256k1_callback default_illegal_callback
Definition secp256k1.c:59
int secp256k1_ec_pubkey_negate(const secp256k1_context *ctx, secp256k1_pubkey *pubkey)
Negates a public key in place.
Definition secp256k1.c:636
int secp256k1_ec_privkey_tweak_mul(const secp256k1_context *ctx, unsigned char *seckey, const unsigned char *tweak32)
Same as secp256k1_ec_seckey_tweak_mul, but DEPRECATED.
Definition secp256k1.c:728
#define SECP256K1_FLAGS_BIT_CONTEXT_DECLASSIFY
Definition secp256k1.h:168
int(* secp256k1_nonce_function)(unsigned char *nonce32, const unsigned char *msg32, const unsigned char *key32, const unsigned char *algo16, void *data, unsigned int attempt)
A pointer to a function to deterministically generate a nonce.
Definition secp256k1.h:103
#define SECP256K1_EC_COMPRESSED
Flag to pass to secp256k1_ec_pubkey_serialize.
Definition secp256k1.h:179
#define SECP256K1_INLINE
Definition secp256k1.h:127
#define SECP256K1_FLAGS_BIT_CONTEXT_VERIFY
The higher bits contain the actual data.
Definition secp256k1.h:166
#define SECP256K1_FLAGS_TYPE_MASK
All flags' lower 8 bits indicate what they're for.
Definition secp256k1.h:162
#define SECP256K1_FLAGS_BIT_CONTEXT_SIGN
Definition secp256k1.h:167
#define SECP256K1_FLAGS_BIT_COMPRESSION
Definition secp256k1.h:169
#define SECP256K1_FLAGS_TYPE_CONTEXT
Definition secp256k1.h:163
#define SECP256K1_FLAGS_TYPE_COMPRESSION
Definition secp256k1.h:164
static int secp256k1_selftest(void)
Definition selftest.h:28
void(* fn)(const char *text, void *data)
Definition util.h:20
const void * data
Definition util.h:21
secp256k1_callback illegal_callback
Definition secp256k1.c:72
secp256k1_callback error_callback
Definition secp256k1.c:73
secp256k1_ecmult_gen_context ecmult_gen_ctx
Definition secp256k1.c:71
secp256k1_ecmult_context ecmult_ctx
Definition secp256k1.c:70
Opaque data structured that holds a parsed ECDSA signature.
Definition secp256k1.h:83
A group element of the secp256k1 curve, in affine coordinates.
Definition group.h:13
secp256k1_fe x
Definition group.h:14
secp256k1_fe y
Definition group.h:15
A group element of the secp256k1 curve, in jacobian coordinates.
Definition group.h:23
Opaque data structure that holds a parsed and valid public key.
Definition secp256k1.h:70
unsigned char data[64]
Definition secp256k1.h:71
A scalar modulo the group order of the secp256k1 curve.
Definition scalar_4x64.h:13
static int count
Definition tests.c:31