7 #ifndef SECP256K1_MODULE_ECDH_MAIN_H
8 #define SECP256K1_MODULE_ECDH_MAIN_H
13 static int ecdh_hash_function_sha256(
unsigned char *output,
const unsigned char *x,
const unsigned char *y,
void *data) {
14 unsigned char version = (y[31] & 0x01) | 0x02;
18 secp256k1_sha256_initialize(&sha);
19 secp256k1_sha256_write(&sha, &version, 1);
20 secp256k1_sha256_write(&sha, x, 32);
21 secp256k1_sha256_finalize(&sha, output);
43 secp256k1_pubkey_load(ctx, &pt, point);
44 secp256k1_scalar_set_b32(&s, scalar, &overflow);
45 if (overflow || secp256k1_scalar_is_zero(&s)) {
51 secp256k1_ecmult_const(&res, &pt, &s, 256);
52 secp256k1_ge_set_gej(&pt, &res);
55 secp256k1_fe_normalize(&pt.
x);
56 secp256k1_fe_normalize(&pt.
y);
57 secp256k1_fe_get_b32(x, &pt.
x);
58 secp256k1_fe_get_b32(y, &pt.
y);
60 ret = hashfp(output, x, y, data);
63 secp256k1_scalar_clear(&s);
const secp256k1_ecdh_hash_function secp256k1_ecdh_hash_function_sha256
An implementation of SHA256 hash function that applies to compressed public key.
int secp256k1_ecdh(const secp256k1_context *ctx, unsigned char *output, const secp256k1_pubkey *point, const unsigned char *scalar, secp256k1_ecdh_hash_function hashfp, void *data)
Compute an EC Diffie-Hellman secret in constant time Returns: 1: exponentiation was successful 0: sca...
const secp256k1_ecdh_hash_function secp256k1_ecdh_hash_function_default
A default ecdh hash function (currently equal to secp256k1_ecdh_hash_function_sha256).
int(* secp256k1_ecdh_hash_function)(unsigned char *output, const unsigned char *x, const unsigned char *y, void *data)
A pointer to a function that applies hash function to a point.
A group element of the secp256k1 curve, in affine coordinates.
A group element of the secp256k1 curve, in jacobian coordinates.
Opaque data structure that holds a parsed and valid public key.
A scalar modulo the group order of the secp256k1 curve.
#define VERIFY_CHECK(cond)