aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/secp256k1/secp256k1/src/ecmult.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/secp256k1/secp256k1/src/ecmult.h')
-rw-r--r--crypto/secp256k1/secp256k1/src/ecmult.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/crypto/secp256k1/secp256k1/src/ecmult.h b/crypto/secp256k1/secp256k1/src/ecmult.h
deleted file mode 100644
index 15a7100a4..000000000
--- a/crypto/secp256k1/secp256k1/src/ecmult.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2013, 2014 Pieter Wuille *
- * Distributed under the MIT software license, see the accompanying *
- * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
- **********************************************************************/
-
-#ifndef _SECP256K1_ECMULT_
-#define _SECP256K1_ECMULT_
-
-#include "num.h"
-#include "group.h"
-
-static void secp256k1_ecmult_start(void);
-static void secp256k1_ecmult_stop(void);
-
-/** Double multiply: R = na*A + ng*G */
-static void secp256k1_ecmult(secp256k1_gej_t *r, const secp256k1_gej_t *a, const secp256k1_scalar_t *na, const secp256k1_scalar_t *ng);
-
-#endif