PRCYCoin  2.0.0.7rc1
P2P Digital Currency
secp256k1_2.h
Go to the documentation of this file.
1 #ifndef SECP256K1_2_H
2 #define SECP256K1_2_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include <stddef.h>
9 
10 /* These rules specify the order of arguments in API calls:
11  *
12  * 1. Context pointers go first, followed by output arguments, combined
13  * output/input arguments, and finally input-only arguments.
14  * 2. Array lengths always immediately the follow the argument whose length
15  * they describe, even if this violates rule 1.
16  * 3. Within the OUT/OUTIN/IN groups, pointers to data that is typically generated
17  * later go first. This means: signatures, public nonces, private nonces,
18  * messages, public keys, secret keys, tweaks.
19  * 4. Arguments that are not data pointers go last, from more complex to less
20  * complex: function pointers, algorithm names, messages, void pointers,
21  * counts, flags, booleans.
22  * 5. Opaque data pointers follow the function pointer they are to be passed to.
23  */
24 
44 
57 
66 typedef struct {
67  unsigned char data[64];
69 
79 typedef struct {
80  unsigned char data[64];
82 
100  unsigned char *nonce32,
101  const unsigned char *msg32,
102  const unsigned char *key32,
103  const unsigned char *algo16,
104  void *data,
105  unsigned int attempt
106 );
107 
108 # if !defined(SECP256K1_GNUC_PREREQ)
109 # if defined(__GNUC__)&&defined(__GNUC_MINOR__)
110 # define SECP256K1_GNUC_PREREQ(_maj,_min) \
111  ((__GNUC__<<16)+__GNUC_MINOR__>=((_maj)<<16)+(_min))
112 # else
113 # define SECP256K1_GNUC_PREREQ(_maj,_min) 0
114 # endif
115 # endif
116 
117 # if (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L) )
118 # if SECP256K1_GNUC_PREREQ(2,7)
119 # define SECP256K1_INLINE __inline__
120 # elif (defined(_MSC_VER))
121 # define SECP256K1_INLINE __inline
122 # else
123 # define SECP256K1_INLINE
124 # endif
125 # else
126 # define SECP256K1_INLINE inline
127 # endif
128 
129 #ifndef SECP256K1_API
130 # if defined(_WIN32)
131 # ifdef SECP256K1_BUILD
132 # define SECP256K1_API __declspec(dllexport)
133 # else
134 # define SECP256K1_API
135 # endif
136 # elif defined(__GNUC__) && defined(SECP256K1_BUILD)
137 # define SECP256K1_API __attribute__ ((visibility ("default")))
138 # else
139 # define SECP256K1_API
140 # endif
141 #endif
142 
146 # if defined(__GNUC__) && SECP256K1_GNUC_PREREQ(3, 4)
147 # define SECP256K1_WARN_UNUSED_RESULT __attribute__ ((__warn_unused_result__))
148 # else
149 # define SECP256K1_WARN_UNUSED_RESULT
150 # endif
151 # if !defined(SECP256K1_BUILD) && defined(__GNUC__) && SECP256K1_GNUC_PREREQ(3, 4)
152 # define SECP256K1_ARG_NONNULL(_x) __attribute__ ((__nonnull__(_x)))
153 # else
154 # define SECP256K1_ARG_NONNULL(_x)
155 # endif
156 
158 #define SECP256K1_FLAGS_TYPE_MASK ((1 << 8) - 1)
159 #define SECP256K1_FLAGS_TYPE_CONTEXT (1 << 0)
160 #define SECP256K1_FLAGS_TYPE_COMPRESSION (1 << 1)
161 
162 #define SECP256K1_FLAGS_BIT_CONTEXT_VERIFY (1 << 8)
163 #define SECP256K1_FLAGS_BIT_CONTEXT_SIGN (1 << 9)
164 #define SECP256K1_FLAGS_BIT_COMPRESSION (1 << 8)
165 
167 #define SECP256K1_CONTEXT_VERIFY (SECP256K1_FLAGS_TYPE_CONTEXT | SECP256K1_FLAGS_BIT_CONTEXT_VERIFY)
168 #define SECP256K1_CONTEXT_SIGN (SECP256K1_FLAGS_TYPE_CONTEXT | SECP256K1_FLAGS_BIT_CONTEXT_SIGN)
169 #define SECP256K1_CONTEXT_NONE (SECP256K1_FLAGS_TYPE_CONTEXT)
170 
172 #define SECP256K1_EC_COMPRESSED (SECP256K1_FLAGS_TYPE_COMPRESSION | SECP256K1_FLAGS_BIT_COMPRESSION)
173 #define SECP256K1_EC_UNCOMPRESSED (SECP256K1_FLAGS_TYPE_COMPRESSION)
174 
176 #define SECP256K1_TAG_PUBKEY_EVEN 0x02
177 #define SECP256K1_TAG_PUBKEY_ODD 0x03
178 #define SECP256K1_TAG_PUBKEY_UNCOMPRESSED 0x04
179 #define SECP256K1_TAG_PUBKEY_HYBRID_EVEN 0x06
180 #define SECP256K1_TAG_PUBKEY_HYBRID_ODD 0x07
181 
190  unsigned int flags
192 
199  const secp256k1_context2* ctx
201 
208  secp256k1_context2* ctx
209 );
210 
232  secp256k1_context2* ctx,
233  void (*fun)(const char* message, void* data),
234  const void* data
236 
254  secp256k1_context2* ctx,
255  void (*fun)(const char* message, void* data),
256  const void* data
258 
266  const secp256k1_context2* ctx,
267  size_t max_size
269 
276  secp256k1_scratch_space2* scratch
277 );
278 
294  const secp256k1_context2* ctx,
295  secp256k1_pubkey2* pubkey,
296  const unsigned char *input,
297  size_t inputlen
299 
300 
302  unsigned char *pub,
303  size_t size
305 
322  const secp256k1_context2* ctx,
323  unsigned char *output,
324  size_t *outputlen,
325  const secp256k1_pubkey2* pubkey,
326  unsigned int flags
328 
345  const secp256k1_context2* ctx,
347  const unsigned char *input64
349 
366  const secp256k1_context2* ctx,
368  const unsigned char *input,
369  size_t inputlen
371 
384  const secp256k1_context2* ctx,
385  unsigned char *output,
386  size_t *outputlen,
387  const secp256k1_ecdsa_sign2ature2* sig
389 
400  const secp256k1_context2* ctx,
401  unsigned char *output64,
402  const secp256k1_ecdsa_sign2ature2* sig
404 
424  const secp256k1_context2* ctx,
425  const secp256k1_ecdsa_sign2ature2 *sig,
426  const unsigned char *msg32,
427  const secp256k1_pubkey2 *pubkey
429 
473  const secp256k1_context2* ctx,
475  const secp256k1_ecdsa_sign2ature2 *sigin
477 
483 
486 
502  const secp256k1_context2* ctx,
504  const unsigned char *msg32,
505  const unsigned char *seckey,
507  const void *ndata
509 
518  const secp256k1_context2* ctx,
519  const unsigned char *seckey
521 
531  const secp256k1_context2* ctx,
532  secp256k1_pubkey2 *pubkey,
533  const unsigned char *seckey
535 
543  const secp256k1_context2* ctx,
544  unsigned char *seckey
546 
554  const secp256k1_context2* ctx,
555  secp256k1_pubkey2 *pubkey
557 
568  const secp256k1_context2* ctx,
569  unsigned char *seckey,
570  const unsigned char *tweak
572 
584  const secp256k1_context2* ctx,
585  secp256k1_pubkey2 *pubkey,
586  const unsigned char *tweak
588 
597  const secp256k1_context2* ctx,
598  unsigned char *seckey,
599  const unsigned char *tweak
601 
611  const secp256k1_context2* ctx,
612  secp256k1_pubkey2 *pubkey,
613  const unsigned char *tweak
615 
636  secp256k1_context2* ctx,
637  const unsigned char *seed32
639 
650  const secp256k1_context2* ctx,
651  secp256k1_pubkey2 *out,
652  const secp256k1_pubkey2 * const * ins,
653  size_t n
655 
656 #ifdef __cplusplus
657 }
658 #endif
659 
660 #endif /* SECP256K1_2_H */
secp256k1_scratch_space_struct2
Definition: scratch.h:14
secp256k1_scratch_space_destroy
SECP256K1_API void secp256k1_scratch_space_destroy(secp256k1_scratch_space2 *scratch)
Destroy a secp256k1 scratch space.
Definition: secp256k1_2.c:140
secp256k1_ec_pubkey_tweak_mul2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_tweak_mul2(const secp256k1_context2 *ctx, secp256k1_pubkey2 *pubkey, const unsigned char *tweak) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Tweak a public key by multiplying it by a tweak value.
Definition: secp256k1_2.c:564
secp256k1_ecdsa_sign2ature2
Opaque data structured that holds a parsed ECDSA signature.
Definition: secp256k1_2.h:79
secp256k1_ec_pubkey_create2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_create2(const secp256k1_context2 *ctx, secp256k1_pubkey2 *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_2.c:434
secp256k1_ecdsa_sign2ature2_parse_compact
SECP256K1_API int secp256k1_ecdsa_sign2ature2_parse_compact(const secp256k1_context2 *ctx, secp256k1_ecdsa_sign2ature2 *sig, const unsigned char *input64) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Parse an ECDSA signature in compact (64 bytes) format.
Definition: secp256k1_2.c:255
secp256k1_ec_privkey_negate2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_privkey_negate2(const secp256k1_context2 *ctx, unsigned char *seckey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2)
Negates a private key in place.
Definition: secp256k1_2.c:457
flags
int flags
Definition: prcycoin-tx.cpp:297
secp256k1_scratch_space_create
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT secp256k1_scratch_space2 * secp256k1_scratch_space_create(const secp256k1_context2 *ctx, size_t max_size) SECP256K1_ARG_NONNULL(1)
Create a secp256k1 scratch space object.
Definition: secp256k1_2.c:135
secp256k1_context_set_error_callback
SECP256K1_API void secp256k1_context_set_error_callback(secp256k1_context2 *ctx, void(*fun)(const char *message, void *data), const void *data) SECP256K1_ARG_NONNULL(1)
Set a callback function to be called when an internal consistency check fails.
Definition: secp256k1_2.c:127
secp256k1_pubkey2
Opaque data structure that holds a parsed and valid public key.
Definition: secp256k1_2.h:66
secp256k1_ec_pubkey_serialize2
SECP256K1_API int secp256k1_ec_pubkey_serialize2(const secp256k1_context2 *ctx, unsigned char *output, size_t *outputlen, const secp256k1_pubkey2 *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_2.c:192
secp256k1_context_destroy
SECP256K1_API void secp256k1_context_destroy(secp256k1_context2 *ctx)
Destroy a secp256k1 context object.
Definition: secp256k1_2.c:110
SECP256K1_API
#define SECP256K1_API
Definition: secp256k1_2.h:139
SECP256K1_ARG_NONNULL
#define SECP256K1_ARG_NONNULL(_x)
Definition: secp256k1_2.h:154
secp256k1_ec_seckey_verify2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_seckey_verify2(const secp256k1_context2 *ctx, const unsigned char *seckey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2)
Verify an ECDSA secret key.
Definition: secp256k1_2.c:421
secp256k1_nonce_function2
int(* secp256k1_nonce_function2)(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_2.h:99
secp256k1_context_randomize2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_context_randomize2(secp256k1_context2 *ctx, const unsigned char *seed32) SECP256K1_ARG_NONNULL(1)
Updates the context randomization to protect against side-channel leakage.
Definition: secp256k1_2.c:588
secp256k1_ec_pubkey_tweak_add2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_tweak_add2(const secp256k1_context2 *ctx, secp256k1_pubkey2 *pubkey, const unsigned char *tweak) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Tweak a public key by adding tweak times the generator to it.
Definition: secp256k1_2.c:518
secp256k1_ecdsa_sign2
SECP256K1_API int secp256k1_ecdsa_sign2(const secp256k1_context2 *ctx, secp256k1_ecdsa_sign2ature2 *sig, const unsigned char *msg32, const unsigned char *seckey, secp256k1_nonce_function2 noncefp, const void *ndata) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4)
Create an ECDSA signature.
Definition: secp256k1_2.c:375
secp256k1_ecdsa_sign2ature2_normalize
SECP256K1_API int secp256k1_ecdsa_sign2ature2_normalize(const secp256k1_context2 *ctx, secp256k1_ecdsa_sign2ature2 *sigout, const secp256k1_ecdsa_sign2ature2 *sigin) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(3)
Convert a signature to a normalized lower-S form.
Definition: secp256k1_2.c:301
secp256k1_nonce_function_default
const SECP256K1_API secp256k1_nonce_function2 secp256k1_nonce_function_default
A default safe nonce generation function (currently equal to secp256k1_nonce_function_rfc6979).
Definition: secp256k1_2.c:373
secp256k1_ec_privkey_tweak_mul2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_privkey_tweak_mul2(const secp256k1_context2 *ctx, unsigned char *seckey, const unsigned char *tweak) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Tweak a private key by multiplying it by a tweak.
Definition: secp256k1_2.c:542
secp256k1_ecdsa_sign2ature2_serialize_der
SECP256K1_API int secp256k1_ecdsa_sign2ature2_serialize_der(const secp256k1_context2 *ctx, unsigned char *output, size_t *outputlen, const secp256k1_ecdsa_sign2ature2 *sig) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4)
Serialize an ECDSA signature in DER format.
Definition: secp256k1_2.c:276
secp256k1_ec_pubkey_negate2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_negate2(const secp256k1_context2 *ctx, secp256k1_pubkey2 *pubkey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2)
Negates a public key in place.
Definition: secp256k1_2.c:469
secp256k1_context_clone
SECP256K1_API secp256k1_context2 * secp256k1_context_clone(const secp256k1_context2 *ctx) SECP256K1_ARG_NONNULL(1) SECP256K1_WARN_UNUSED_RESULT
Copies a secp256k1 context object.
Definition: secp256k1_2.c:101
secp256k1_ec_pubkey_combine2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_combine2(const secp256k1_context2 *ctx, secp256k1_pubkey2 *out, const secp256k1_pubkey2 *const *ins, size_t n) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Add a number of public keys together.
Definition: secp256k1_2.c:595
secp256k1_context_struct2
Definition: secp256k1_types.h:15
secp256k1_ecdsa_sign2ature2_parse_der
SECP256K1_API int secp256k1_ecdsa_sign2ature2_parse_der(const secp256k1_context2 *ctx, secp256k1_ecdsa_sign2ature2 *sig, const unsigned char *input, size_t inputlen) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Parse a DER ECDSA signature.
Definition: secp256k1_2.c:239
secp256k1_context_set_illegal_callback
SECP256K1_API void secp256k1_context_set_illegal_callback(secp256k1_context2 *ctx, void(*fun)(const char *message, void *data), const void *data) SECP256K1_ARG_NONNULL(1)
Set a callback function to be called when an illegal argument is passed to an API call.
Definition: secp256k1_2.c:119
secp256k1_nonce_function_rfc6979
const SECP256K1_API secp256k1_nonce_function2 secp256k1_nonce_function_rfc6979
An implementation of RFC6979 (using HMAC-SHA256) as nonce generation function.
Definition: secp256k1_2.c:372
secp256k1_ecdsa_verify2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ecdsa_verify2(const secp256k1_context2 *ctx, const secp256k1_ecdsa_sign2ature2 *sig, const unsigned char *msg32, const secp256k1_pubkey2 *pubkey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4)
Verify an ECDSA signature.
Definition: secp256k1_2.c:320
secp256k1_ec_pubkey_raw_negate2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_raw_negate2(unsigned char *pub, size_t size) SECP256K1_ARG_NONNULL(1)
Definition: secp256k1_2.c:484
secp256k1_context_create2
SECP256K1_API secp256k1_context2 * secp256k1_context_create2(unsigned int flags) SECP256K1_WARN_UNUSED_RESULT
Create a secp256k1 context object.
Definition: secp256k1_2.c:75
SECP256K1_WARN_UNUSED_RESULT
#define SECP256K1_WARN_UNUSED_RESULT
Warning attributes NONNULL is not used if SECP256K1_BUILD is set to avoid the compiler optimizing out...
Definition: secp256k1_2.h:149
secp256k1_ecdsa_sign2ature2_serialize_compact
SECP256K1_API int secp256k1_ecdsa_sign2ature2_serialize_compact(const secp256k1_context2 *ctx, unsigned char *output64, const secp256k1_ecdsa_sign2ature2 *sig) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Serialize an ECDSA signature in compact (64 byte) format.
Definition: secp256k1_2.c:288
secp256k1_scratch_space_struct2::data
void * data[SECP256K1_SCRATCH_MAX_FRAMES]
Definition: scratch.h:15
secp256k1_ec_privkey_tweak_add2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_privkey_tweak_add2(const secp256k1_context2 *ctx, unsigned char *seckey, const unsigned char *tweak) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Tweak a private key by adding tweak to it.
Definition: secp256k1_2.c:495
secp256k1_ec_pubkey_parse2
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_parse2(const secp256k1_context2 *ctx, secp256k1_pubkey2 *pubkey, const unsigned char *input, size_t inputlen) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Parse a variable-length public key into the pubkey object.
Definition: secp256k1_2.c:177