summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorjsing <>2023-03-05 16:06:14 +0000
committerjsing <>2023-03-05 16:06:14 +0000
commit3291182dc20dad078a2d87c0f765b28e9919ce41 (patch)
treea62bfe40488af1913f795e78f77e0a8ca5f252bd /src/lib
parent5956245d8bc01695eed9e4cb0c26f064a0f3612a (diff)
downloadopenbsd-3291182dc20dad078a2d87c0f765b28e9919ce41.tar.gz
openbsd-3291182dc20dad078a2d87c0f765b28e9919ce41.tar.bz2
openbsd-3291182dc20dad078a2d87c0f765b28e9919ce41.zip
Remove duplicate function prototypes.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/ec/ec_local.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h
index 3137c76361..e051a4aa17 100644
--- a/src/lib/libcrypto/ec/ec_local.h
+++ b/src/lib/libcrypto/ec/ec_local.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_local.h,v 1.3 2023/03/04 14:53:23 jsing Exp $ */ 1/* $OpenBSD: ec_local.h,v 1.4 2023/03/05 16:06:14 jsing Exp $ */
2/* 2/*
3 * Originally written by Bodo Moeller for the OpenSSL project. 3 * Originally written by Bodo Moeller for the OpenSSL project.
4 */ 4 */
@@ -427,13 +427,6 @@ int ec_GF2m_simple_field_mul(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, const
427int ec_GF2m_simple_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, BN_CTX *); 427int ec_GF2m_simple_field_sqr(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, BN_CTX *);
428int ec_GF2m_simple_field_div(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *); 428int ec_GF2m_simple_field_div(const EC_GROUP *, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *);
429 429
430
431/* method functions in ec2_mult.c */
432int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
433 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *);
434int ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx);
435int ec_GF2m_have_precompute_mult(const EC_GROUP *group);
436
437/* method functions in ec2_mult.c */ 430/* method functions in ec2_mult.c */
438int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, 431int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
439 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *); 432 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *);