7b50483ad789081ba158799e5b94330f62932607 Adds a declassify operation to aid constant-time analysis. (Gregory Maxwell) 34a67c773b0871e5797c7ab506d004e80911f120 Eliminate harmless non-constant time operations on secret data. (Gregory Maxwell) Pull request description: There were several places where the code was non-constant time for invalid secret inputs. These are harmless under sane use but get in the way of automatic const-time validation. (Nonce overflow in signing is not addressed, nor is s==0 in signing) ACKs for top commit: sipa: utACK 7b50483ad789081ba158799e5b94330f62932607 real-or-random: ACK 7b50483ad789081ba158799e5b94330f62932607 I read the code carefully and tested it jonasnick: reACK 7b50483ad789081ba158799e5b94330f62932607 Tree-SHA512: 0776c3a86e723d2f97b9b9cb31d0d0e59dfcf308093b3f46fbc859f73f9957f3fa977d03b57727232040368d058701ef107838f9b1ec98f925ec78ddad495c4e
72 lines
2.3 KiB
C
72 lines
2.3 KiB
C
/**********************************************************************
|
|
* Copyright (c) 2015 Andrew Poelstra *
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
* file COPYING or http://www.opensource.org/licenses/mit-license.php.*
|
|
**********************************************************************/
|
|
|
|
#ifndef SECP256K1_MODULE_ECDH_MAIN_H
|
|
#define SECP256K1_MODULE_ECDH_MAIN_H
|
|
|
|
#include "include/secp256k1_ecdh.h"
|
|
#include "ecmult_const_impl.h"
|
|
|
|
static int ecdh_hash_function_sha256(unsigned char *output, const unsigned char *x32, const unsigned char *y32, void *data) {
|
|
unsigned char version = (y32[31] & 0x01) | 0x02;
|
|
secp256k1_sha256 sha;
|
|
(void)data;
|
|
|
|
secp256k1_sha256_initialize(&sha);
|
|
secp256k1_sha256_write(&sha, &version, 1);
|
|
secp256k1_sha256_write(&sha, x32, 32);
|
|
secp256k1_sha256_finalize(&sha, output);
|
|
|
|
return 1;
|
|
}
|
|
|
|
const secp256k1_ecdh_hash_function secp256k1_ecdh_hash_function_sha256 = ecdh_hash_function_sha256;
|
|
const secp256k1_ecdh_hash_function secp256k1_ecdh_hash_function_default = ecdh_hash_function_sha256;
|
|
|
|
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) {
|
|
int ret = 0;
|
|
int overflow = 0;
|
|
secp256k1_gej res;
|
|
secp256k1_ge pt;
|
|
secp256k1_scalar s;
|
|
unsigned char x[32];
|
|
unsigned char y[32];
|
|
|
|
VERIFY_CHECK(ctx != NULL);
|
|
ARG_CHECK(output != NULL);
|
|
ARG_CHECK(point != NULL);
|
|
ARG_CHECK(scalar != NULL);
|
|
|
|
if (hashfp == NULL) {
|
|
hashfp = secp256k1_ecdh_hash_function_default;
|
|
}
|
|
|
|
secp256k1_pubkey_load(ctx, &pt, point);
|
|
secp256k1_scalar_set_b32(&s, scalar, &overflow);
|
|
|
|
overflow |= secp256k1_scalar_is_zero(&s);
|
|
secp256k1_scalar_cmov(&s, &secp256k1_scalar_one, overflow);
|
|
|
|
secp256k1_ecmult_const(&res, &pt, &s, 256);
|
|
secp256k1_ge_set_gej(&pt, &res);
|
|
|
|
/* Compute a hash of the point */
|
|
secp256k1_fe_normalize(&pt.x);
|
|
secp256k1_fe_normalize(&pt.y);
|
|
secp256k1_fe_get_b32(x, &pt.x);
|
|
secp256k1_fe_get_b32(y, &pt.y);
|
|
|
|
ret = hashfp(output, x, y, data);
|
|
|
|
memset(x, 0, 32);
|
|
memset(y, 0, 32);
|
|
secp256k1_scalar_clear(&s);
|
|
|
|
return !!ret & !overflow;
|
|
}
|
|
|
|
#endif /* SECP256K1_MODULE_ECDH_MAIN_H */
|