]> Git Repo - secp256k1.git/blame - src/ecmult.h
Implement endomorphism optimization for secp256k1_ecmult_const
[secp256k1.git] / src / ecmult.h
CommitLineData
71712b27
GM
1/**********************************************************************
2 * Copyright (c) 2013, 2014 Pieter Wuille *
3 * Distributed under the MIT software license, see the accompanying *
4 * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5 **********************************************************************/
0a433ea2 6
581ef48b
PW
7#ifndef _SECP256K1_ECMULT_
8#define _SECP256K1_ECMULT_
9
949bea92 10#include "num.h"
f11ff5be 11#include "group.h"
581ef48b 12
a9b6595e
PW
13typedef struct {
14 /* For accelerating the computation of a*P + b*G: */
15 secp256k1_ge_storage_t (*pre_g)[]; /* odd multiples of the generator */
16#ifdef USE_ENDOMORPHISM
17 secp256k1_ge_storage_t (*pre_g_128)[]; /* odd multiples of 2^128*generator */
18#endif
19} secp256k1_ecmult_context_t;
20
21static void secp256k1_ecmult_context_init(secp256k1_ecmult_context_t *ctx);
995c5487 22static void secp256k1_ecmult_context_build(secp256k1_ecmult_context_t *ctx, const callback_t *cb);
d899b5b6 23static void secp256k1_ecmult_context_clone(secp256k1_ecmult_context_t *dst,
995c5487 24 const secp256k1_ecmult_context_t *src, const callback_t *cb);
a9b6595e
PW
25static void secp256k1_ecmult_context_clear(secp256k1_ecmult_context_t *ctx);
26static int secp256k1_ecmult_context_is_built(const secp256k1_ecmult_context_t *ctx);
b1483f87 27
b1483f87 28/** Double multiply: R = na*A + ng*G */
a9b6595e 29static void secp256k1_ecmult(const secp256k1_ecmult_context_t *ctx, secp256k1_gej_t *r, const secp256k1_gej_t *a, const secp256k1_scalar_t *na, const secp256k1_scalar_t *ng);
cb4d29c8 30
581ef48b 31#endif
This page took 0.029421 seconds and 4 git commands to generate.