2017-08-26 15:44:21 +00:00
|
|
|
#ifndef SECP256K1_ECDH_H
|
|
|
|
#define SECP256K1_ECDH_H
|
2015-06-29 20:06:28 +00:00
|
|
|
|
2017-08-26 15:44:21 +00:00
|
|
|
#include "secp256k1.h"
|
2015-06-29 20:06:28 +00:00
|
|
|
|
2017-08-26 15:44:21 +00:00
|
|
|
#ifdef __cplusplus
|
2015-06-29 20:06:28 +00:00
|
|
|
extern "C" {
|
2017-08-26 15:44:21 +00:00
|
|
|
#endif
|
2015-06-29 20:06:28 +00:00
|
|
|
|
|
|
|
/** Compute an EC Diffie-Hellman secret in constant time
|
|
|
|
* Returns: 1: exponentiation was successful
|
|
|
|
* 0: scalar was invalid (zero or overflow)
|
2015-10-05 10:50:11 +00:00
|
|
|
* Args: ctx: pointer to a context object (cannot be NULL)
|
|
|
|
* Out: result: a 32-byte array which will be populated by an ECDH
|
|
|
|
* secret computed from the point and scalar
|
|
|
|
* In: pubkey: a pointer to a secp256k1_pubkey containing an
|
|
|
|
* initialized public key
|
|
|
|
* privkey: a 32-byte scalar with which to multiply the point
|
2015-06-29 20:06:28 +00:00
|
|
|
*/
|
2015-09-20 19:36:37 +00:00
|
|
|
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ecdh(
|
2015-09-21 18:57:54 +00:00
|
|
|
const secp256k1_context* ctx,
|
2015-06-29 20:06:28 +00:00
|
|
|
unsigned char *result,
|
2015-10-05 10:50:11 +00:00
|
|
|
const secp256k1_pubkey *pubkey,
|
|
|
|
const unsigned char *privkey
|
2015-06-29 20:06:28 +00:00
|
|
|
) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4);
|
|
|
|
|
2017-08-26 15:44:21 +00:00
|
|
|
#ifdef __cplusplus
|
2015-06-29 20:06:28 +00:00
|
|
|
}
|
|
|
|
#endif
|
2017-08-26 15:44:21 +00:00
|
|
|
|
|
|
|
#endif /* SECP256K1_ECDH_H */
|