#ifndef SECP256K1_ECDH_H #define SECP256K1_ECDH_H #include "secp256k1.h" #ifdef __cplusplus extern "C" { #endif /** A pointer to a function that applies hash function to a point * * Returns: 1 if a point was successfully hashed. 0 will cause ecdh to fail * Out: output: pointer to an array to be filled by the function * In: x: pointer to a 32-byte x coordinate * y: pointer to a 32-byte y coordinate * data: Arbitrary data pointer that is passed through */ typedef int (*rustsecp256k1_v0_1_1_ecdh_hash_function)( unsigned char *output, const unsigned char *x, const unsigned char *y, void *data ); /** An implementation of SHA256 hash function that applies to compressed public key. */ SECP256K1_API extern const rustsecp256k1_v0_1_1_ecdh_hash_function rustsecp256k1_v0_1_1_ecdh_hash_function_sha256; /** A default ecdh hash function (currently equal to rustsecp256k1_v0_1_1_ecdh_hash_function_sha256). */ SECP256K1_API extern const rustsecp256k1_v0_1_1_ecdh_hash_function rustsecp256k1_v0_1_1_ecdh_hash_function_default; /** Compute an EC Diffie-Hellman secret in constant time * Returns: 1: exponentiation was successful * 0: scalar was invalid (zero or overflow) * Args: ctx: pointer to a context object (cannot be NULL) * Out: output: pointer to an array to be filled by the function * In: pubkey: a pointer to a rustsecp256k1_v0_1_1_pubkey containing an * initialized public key * privkey: a 32-byte scalar with which to multiply the point * hashfp: pointer to a hash function. If NULL, rustsecp256k1_v0_1_1_ecdh_hash_function_sha256 is used * data: Arbitrary data pointer that is passed through */ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int rustsecp256k1_v0_1_1_ecdh( const rustsecp256k1_v0_1_1_context* ctx, unsigned char *output, const rustsecp256k1_v0_1_1_pubkey *pubkey, const unsigned char *privkey, rustsecp256k1_v0_1_1_ecdh_hash_function hashfp, void *data ) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4); #ifdef __cplusplus } #endif #endif /* SECP256K1_ECDH_H */