secp256k1_ec_pubkey_combine

Add a number of public keys together.

extern (C)
int
secp256k1_ec_pubkey_combine

Return Value

Type: int

1: the sum of the public keys is valid. 0: the sum of the public keys is not valid. Args: ctx: pointer to a context object. Out: out: pointer to a public key object for placing the resulting public key. In: ins: pointer to array of pointers to public keys. n: the number of public keys to add together (must be at least 1).

Meta