Skip to content

Commit aa3dd52

Browse files
committed
include: make doc about ctx more consistent
Replaces "ctx: a secp256k1 context object" with "ctx: pointer to a context object". Also removes the word "existing".
1 parent e3f6900 commit aa3dd52

5 files changed

+40
-40
lines changed

include/secp256k1.h

+21-21
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ SECP256K1_API void secp256k1_selftest(void);
265265
* memory allocation entirely, see secp256k1_context_static and the functions in
266266
* secp256k1_preallocated.h.
267267
*
268-
* Returns: a newly created context object.
268+
* Returns: pointer to a newly created context object.
269269
* In: flags: Always set to SECP256K1_CONTEXT_NONE (see below).
270270
*
271271
* The only valid non-deprecated flag in recent library versions is
@@ -296,8 +296,8 @@ SECP256K1_API secp256k1_context *secp256k1_context_create(
296296
* Cloning secp256k1_context_static is not possible, and should not be emulated by
297297
* the caller (e.g., using memcpy). Create a new context instead.
298298
*
299-
* Returns: a newly created context object.
300-
* Args: ctx: an existing context to copy (not secp256k1_context_static)
299+
* Returns: pointer to a newly created context object.
300+
* Args: ctx: pointer to a context to copy (not secp256k1_context_static).
301301
*/
302302
SECP256K1_API secp256k1_context *secp256k1_context_clone(
303303
const secp256k1_context *ctx
@@ -313,7 +313,7 @@ SECP256K1_API secp256k1_context *secp256k1_context_clone(
313313
* behaviour is undefined. In that case, secp256k1_context_preallocated_destroy must
314314
* be used instead.
315315
*
316-
* Args: ctx: an existing context to destroy, constructed using
316+
* Args: ctx: pointer to a context to destroy, constructed using
317317
* secp256k1_context_create or secp256k1_context_clone
318318
* (i.e., not secp256k1_context_static).
319319
*/
@@ -350,7 +350,7 @@ SECP256K1_API void secp256k1_context_destroy(
350350
* fails. In this case, the corresponding default handler will be called with
351351
* the data pointer argument set to NULL.
352352
*
353-
* Args: ctx: an existing context object.
353+
* Args: ctx: pointer to a context object.
354354
* In: fun: a pointer to a function to call when an illegal argument is
355355
* passed to the API, taking a message and an opaque pointer.
356356
* (NULL restores the default handler.)
@@ -377,7 +377,7 @@ SECP256K1_API void secp256k1_context_set_illegal_callback(
377377
* for that). After this callback returns, anything may happen, including
378378
* crashing.
379379
*
380-
* Args: ctx: an existing context object.
380+
* Args: ctx: pointer to a context object.
381381
* In: fun: a pointer to a function to call when an internal error occurs,
382382
* taking a message and an opaque pointer (NULL restores the
383383
* default handler, see secp256k1_context_set_illegal_callback
@@ -395,7 +395,7 @@ SECP256K1_API void secp256k1_context_set_error_callback(
395395
/** Create a secp256k1 scratch space object.
396396
*
397397
* Returns: a newly created scratch space.
398-
* Args: ctx: an existing context object.
398+
* Args: ctx: pointer to a context object.
399399
* In: size: amount of memory to be available as scratch space. Some extra
400400
* (<100 bytes) will be allocated for extra accounting.
401401
*/
@@ -407,7 +407,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT secp256k1_scratch_space *secp256k1_sc
407407
/** Destroy a secp256k1 scratch space.
408408
*
409409
* The pointer may not be used afterwards.
410-
* Args: ctx: a secp256k1 context object.
410+
* Args: ctx: a pointer to a context object.
411411
* scratch: space to destroy
412412
*/
413413
SECP256K1_API void secp256k1_scratch_space_destroy(
@@ -419,7 +419,7 @@ SECP256K1_API void secp256k1_scratch_space_destroy(
419419
*
420420
* Returns: 1 if the public key was fully valid.
421421
* 0 if the public key could not be parsed or is invalid.
422-
* Args: ctx: a secp256k1 context object.
422+
* Args: ctx: pointer to a context object.
423423
* Out: pubkey: pointer to a pubkey object. If 1 is returned, it is set to a
424424
* parsed version of input. If not, its value is undefined.
425425
* In: input: pointer to a serialized public key
@@ -439,7 +439,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_parse(
439439
/** Serialize a pubkey object into a serialized byte sequence.
440440
*
441441
* Returns: 1 always.
442-
* Args: ctx: a secp256k1 context object.
442+
* Args: ctx: pointer to a context object.
443443
* Out: output: a pointer to a 65-byte (if compressed==0) or 33-byte (if
444444
* compressed==1) byte array to place the serialized key
445445
* in.
@@ -464,7 +464,7 @@ SECP256K1_API int secp256k1_ec_pubkey_serialize(
464464
* Returns: <0 if the first public key is less than the second
465465
* >0 if the first public key is greater than the second
466466
* 0 if the two public keys are equal
467-
* Args: ctx: a secp256k1 context object.
467+
* Args: ctx: pointer to a context object
468468
* In: pubkey1: first public key to compare
469469
* pubkey2: second public key to compare
470470
*/
@@ -477,9 +477,9 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_cmp(
477477
/** Parse an ECDSA signature in compact (64 bytes) format.
478478
*
479479
* Returns: 1 when the signature could be parsed, 0 otherwise.
480-
* Args: ctx: a secp256k1 context object
481-
* Out: sig: a pointer to a signature object
482-
* In: input64: a pointer to the 64-byte array to parse
480+
* Args: ctx: pointer to a context object
481+
* Out: sig: pointer to a signature object
482+
* In: input64: pointer to the 64-byte array to parse
483483
*
484484
* The signature must consist of a 32-byte big endian R value, followed by a
485485
* 32-byte big endian S value. If R or S fall outside of [0..order-1], the
@@ -498,7 +498,7 @@ SECP256K1_API int secp256k1_ecdsa_signature_parse_compact(
498498
/** Parse a DER ECDSA signature.
499499
*
500500
* Returns: 1 when the signature could be parsed, 0 otherwise.
501-
* Args: ctx: a secp256k1 context object
501+
* Args: ctx: pointer to a context object
502502
* Out: sig: a pointer to a signature object
503503
* In: input: a pointer to the signature to be parsed
504504
* inputlen: the length of the array pointed to be input
@@ -520,7 +520,7 @@ SECP256K1_API int secp256k1_ecdsa_signature_parse_der(
520520
/** Serialize an ECDSA signature in DER format.
521521
*
522522
* Returns: 1 if enough space was available to serialize, 0 otherwise
523-
* Args: ctx: a secp256k1 context object
523+
* Args: ctx: pointer to a context object
524524
* Out: output: a pointer to an array to store the DER serialization
525525
* In/Out: outputlen: a pointer to a length integer. Initially, this integer
526526
* should be set to the length of output. After the call
@@ -538,9 +538,9 @@ SECP256K1_API int secp256k1_ecdsa_signature_serialize_der(
538538
/** Serialize an ECDSA signature in compact (64 byte) format.
539539
*
540540
* Returns: 1
541-
* Args: ctx: a secp256k1 context object
542-
* Out: output64: a pointer to a 64-byte array to store the compact serialization
543-
* In: sig: a pointer to an initialized signature object
541+
* Args: ctx: pointer to a context object
542+
* Out: output64: pointer to a 64-byte array to store the compact serialization
543+
* In: sig: pointer to an initialized signature object
544544
*
545545
* See secp256k1_ecdsa_signature_parse_compact for details about the encoding.
546546
*/
@@ -554,7 +554,7 @@ SECP256K1_API int secp256k1_ecdsa_signature_serialize_compact(
554554
*
555555
* Returns: 1: correct signature
556556
* 0: incorrect or unparseable signature
557-
* Args: ctx: a secp256k1 context object.
557+
* Args: ctx: pointer to a context object
558558
* In: sig: the signature being verified.
559559
* msghash32: the 32-byte message hash being verified.
560560
* The verifier must make sure to apply a cryptographic
@@ -585,7 +585,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ecdsa_verify(
585585
/** Convert a signature to a normalized lower-S form.
586586
*
587587
* Returns: 1 if sigin was not normalized, 0 if it already was.
588-
* Args: ctx: a secp256k1 context object
588+
* Args: ctx: pointer to a context object
589589
* Out: sigout: a pointer to a signature to fill with the normalized form,
590590
* or copy if the input was already normalized. (can be NULL if
591591
* you're only interested in whether the input was already

include/secp256k1_extrakeys.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ typedef struct {
3939
* Returns: 1 if the public key was fully valid.
4040
* 0 if the public key could not be parsed or is invalid.
4141
*
42-
* Args: ctx: a secp256k1 context object.
42+
* Args: ctx: pointer to a context object.
4343
* Out: pubkey: pointer to a pubkey object. If 1 is returned, it is set to a
4444
* parsed version of input. If not, it's set to an invalid value.
4545
* In: input32: pointer to a serialized xonly_pubkey.
@@ -54,7 +54,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_xonly_pubkey_parse(
5454
*
5555
* Returns: 1 always.
5656
*
57-
* Args: ctx: a secp256k1 context object.
57+
* Args: ctx: pointer to a context object.
5858
* Out: output32: a pointer to a 32-byte array to place the serialized key in.
5959
* In: pubkey: a pointer to a secp256k1_xonly_pubkey containing an initialized public key.
6060
*/
@@ -69,7 +69,7 @@ SECP256K1_API int secp256k1_xonly_pubkey_serialize(
6969
* Returns: <0 if the first public key is less than the second
7070
* >0 if the first public key is greater than the second
7171
* 0 if the two public keys are equal
72-
* Args: ctx: a secp256k1 context object.
72+
* Args: ctx: pointer to a context object.
7373
* In: pubkey1: first public key to compare
7474
* pubkey2: second public key to compare
7575
*/

include/secp256k1_preallocated.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ SECP256K1_API size_t secp256k1_context_preallocated_size(
5252
* in the memory. In simpler words, the prealloc pointer (or any pointer derived
5353
* from it) should not be used during the lifetime of the context object.
5454
*
55-
* Returns: a newly created context object.
55+
* Returns: pointer to newly created context object.
5656
* In: prealloc: a pointer to a rewritable contiguous block of memory of
5757
* size at least secp256k1_context_preallocated_size(flags)
5858
* bytes, as detailed above.
@@ -72,7 +72,7 @@ SECP256K1_API secp256k1_context *secp256k1_context_preallocated_create(
7272
* caller-provided memory.
7373
*
7474
* Returns: the required size of the caller-provided memory block.
75-
* In: ctx: an existing context to copy.
75+
* In: ctx: pointer to a context to copy.
7676
*/
7777
SECP256K1_API size_t secp256k1_context_preallocated_clone_size(
7878
const secp256k1_context *ctx
@@ -91,8 +91,8 @@ SECP256K1_API size_t secp256k1_context_preallocated_clone_size(
9191
* Cloning secp256k1_context_static is not possible, and should not be emulated by
9292
* the caller (e.g., using memcpy). Create a new context instead.
9393
*
94-
* Returns: a newly created context object.
95-
* Args: ctx: an existing context to copy (not secp256k1_context_static).
94+
* Returns: pointer to a newly created context object.
95+
* Args: ctx: pointer to a context to copy (not secp256k1_context_static).
9696
* In: prealloc: a pointer to a rewritable contiguous block of memory of
9797
* size at least secp256k1_context_preallocated_size(flags)
9898
* bytes, as detailed above.
@@ -118,7 +118,7 @@ SECP256K1_API secp256k1_context *secp256k1_context_preallocated_clone(
118118
* preallocated pointer given to secp256k1_context_preallocated_create or
119119
* secp256k1_context_preallocated_clone.
120120
*
121-
* Args: ctx: an existing context to destroy, constructed using
121+
* Args: ctx: pointer to a context to destroy, constructed using
122122
* secp256k1_context_preallocated_create or
123123
* secp256k1_context_preallocated_clone
124124
* (i.e., not secp256k1_context_static).

include/secp256k1_recovery.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ typedef struct {
2828
/** Parse a compact ECDSA signature (64 bytes + recovery id).
2929
*
3030
* Returns: 1 when the signature could be parsed, 0 otherwise
31-
* Args: ctx: a secp256k1 context object
32-
* Out: sig: a pointer to a signature object
33-
* In: input64: a pointer to a 64-byte compact signature
31+
* Args: ctx: pointer to a context object
32+
* Out: sig: pointer to a signature object
33+
* In: input64: pointer to a 64-byte compact signature
3434
* recid: the recovery id (0, 1, 2 or 3)
3535
*/
3636
SECP256K1_API int secp256k1_ecdsa_recoverable_signature_parse_compact(
@@ -43,9 +43,9 @@ SECP256K1_API int secp256k1_ecdsa_recoverable_signature_parse_compact(
4343
/** Convert a recoverable signature into a normal signature.
4444
*
4545
* Returns: 1
46-
* Args: ctx: a secp256k1 context object.
47-
* Out: sig: a pointer to a normal signature.
48-
* In: sigin: a pointer to a recoverable signature.
46+
* Args: ctx: pointer to a context object.
47+
* Out: sig: pointer to a normal signature.
48+
* In: sigin: pointer to a recoverable signature.
4949
*/
5050
SECP256K1_API int secp256k1_ecdsa_recoverable_signature_convert(
5151
const secp256k1_context *ctx,
@@ -56,10 +56,10 @@ SECP256K1_API int secp256k1_ecdsa_recoverable_signature_convert(
5656
/** Serialize an ECDSA signature in compact format (64 bytes + recovery id).
5757
*
5858
* Returns: 1
59-
* Args: ctx: a secp256k1 context object.
60-
* Out: output64: a pointer to a 64-byte array of the compact signature.
61-
* recid: a pointer to an integer to hold the recovery id.
62-
* In: sig: a pointer to an initialized signature object.
59+
* Args: ctx: pointer to a context object.
60+
* Out: output64: pointer to a 64-byte array of the compact signature.
61+
* recid: pointer to an integer to hold the recovery id.
62+
* In: sig: pointer to an initialized signature object.
6363
*/
6464
SECP256K1_API int secp256k1_ecdsa_recoverable_signature_serialize_compact(
6565
const secp256k1_context *ctx,

include/secp256k1_schnorrsig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ SECP256K1_API int secp256k1_schnorrsig_sign_custom(
169169
*
170170
* Returns: 1: correct signature
171171
* 0: incorrect signature
172-
* Args: ctx: a secp256k1 context object.
172+
* Args: ctx: pointer to a context object.
173173
* In: sig64: pointer to the 64-byte signature to verify.
174174
* msg: the message being verified. Can only be NULL if msglen is 0.
175175
* msglen: length of the message

0 commit comments

Comments
 (0)