summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2023-06-12 18:17:18 +0000
committerjsing <>2023-06-12 18:17:18 +0000
commit68db0cd7592a548f310f8037c0ba78583d91e3c9 (patch)
tree5d49c07b3f040f2ddd9461f6f89d6e843d8612c1
parent38c39b6373ebdb2cab5dc7287cf23a31076e26bf (diff)
downloadopenbsd-68db0cd7592a548f310f8037c0ba78583d91e3c9.tar.gz
openbsd-68db0cd7592a548f310f8037c0ba78583d91e3c9.tar.bz2
openbsd-68db0cd7592a548f310f8037c0ba78583d91e3c9.zip
Remove prototypes for various ec_GF2m_* functions that no longer exist.
-rw-r--r--src/lib/libcrypto/ec/ec_local.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h
index 6e799137a3..c827a8f708 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.13 2023/04/27 07:10:05 tb Exp $ */ 1/* $OpenBSD: ec_local.h,v 1.14 2023/06/12 18:17:18 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 */
@@ -357,18 +357,6 @@ int ec_GFp_simple_mul_double_nonct(const EC_GROUP *, EC_POINT *r, const BIGNUM *
357 357
358int ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx); 358int ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx);
359 359
360int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *, EC_POINT *,
361 const BIGNUM *x, int y_bit, BN_CTX *);
362size_t ec_GF2m_simple_point2oct(const EC_GROUP *, const EC_POINT *, point_conversion_form_t form,
363 unsigned char *buf, size_t len, BN_CTX *);
364int ec_GF2m_simple_oct2point(const EC_GROUP *, EC_POINT *,
365 const unsigned char *buf, size_t len, BN_CTX *);
366
367int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
368 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *);
369int ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx);
370int ec_GF2m_have_precompute_mult(const EC_GROUP *group);
371
372/* EC_METHOD definitions */ 360/* EC_METHOD definitions */
373 361
374struct ec_key_method_st { 362struct ec_key_method_st {