secp256k1_pubkey

Opaque data structure that holds a parsed and valid public key.

The exact representation of data inside is implementation defined and not guaranteed to be portable between different platforms or versions. It is however guaranteed to be 64 bytes in size, and can be safely copied/moved. If you need to convert to a format suitable for storage or transmission, use secp256k1_ec_pubkey_serialize and secp256k1_ec_pubkey_parse. To compare keys, use secp256k1_ec_pubkey_cmp.

extern (C)
struct secp256k1_pubkey {}

Members

Variables

data
ubyte[64] data;
Undocumented in source.

Meta