diff options
author | tb <> | 2023-04-25 19:53:30 +0000 |
---|---|---|
committer | tb <> | 2023-04-25 19:53:30 +0000 |
commit | 82b040aef9cef17610a89204220ee3cb1012fb20 (patch) | |
tree | e9be44ea96c7294efcc800d9cb419edbab4fe999 /src/lib/libcrypto/ec/ec_cvt.c | |
parent | aa0643f4294a31c69cf4097f866cd5cb11e48c1e (diff) | |
download | openbsd-82b040aef9cef17610a89204220ee3cb1012fb20.tar.gz openbsd-82b040aef9cef17610a89204220ee3cb1012fb20.tar.bz2 openbsd-82b040aef9cef17610a89204220ee3cb1012fb20.zip |
GF2m bites the dust. It won't be missed.
Diffstat (limited to 'src/lib/libcrypto/ec/ec_cvt.c')
-rw-r--r-- | src/lib/libcrypto/ec/ec_cvt.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/lib/libcrypto/ec/ec_cvt.c b/src/lib/libcrypto/ec/ec_cvt.c index 30e843e682..90e7400739 100644 --- a/src/lib/libcrypto/ec/ec_cvt.c +++ b/src/lib/libcrypto/ec/ec_cvt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_cvt.c,v 1.10 2023/03/08 07:15:42 jsing Exp $ */ | 1 | /* $OpenBSD: ec_cvt.c,v 1.11 2023/04/25 19:53:30 tb 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 | */ |
@@ -100,12 +100,3 @@ EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, | |||
100 | { | 100 | { |
101 | return ec_group_new_curve(EC_GFp_mont_method(), p, a, b, ctx); | 101 | return ec_group_new_curve(EC_GFp_mont_method(), p, a, b, ctx); |
102 | } | 102 | } |
103 | |||
104 | #ifndef OPENSSL_NO_EC2M | ||
105 | EC_GROUP * | ||
106 | EC_GROUP_new_curve_GF2m(const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, | ||
107 | BN_CTX *ctx) | ||
108 | { | ||
109 | return ec_group_new_curve(EC_GF2m_simple_method(), p, a, b, ctx); | ||
110 | } | ||
111 | #endif | ||