summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2023-04-18 15:14:46 +0000
committertb <>2023-04-18 15:14:46 +0000
commit422e0801f7fe8a60b59b5e58acdb745f9267f8cc (patch)
tree640e7dcdb0d33046392297461239291f45ec307c /src/lib
parent81d20d807e4a728fa9b09f8cbf063219995a54e2 (diff)
downloadopenbsd-422e0801f7fe8a60b59b5e58acdb745f9267f8cc.tar.gz
openbsd-422e0801f7fe8a60b59b5e58acdb745f9267f8cc.tar.bz2
openbsd-422e0801f7fe8a60b59b5e58acdb745f9267f8cc.zip
Remove prototypes under OPENSSL_NO_EC_NISTP_64_GCC_128
The code was deleted a while back, the prototypes remained. We had OPENSSL_NO_EC_NISTP_64_GCC_128 in opensslfeatures.h since forever. discussed with jsing
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/ec/ec.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/src/lib/libcrypto/ec/ec.h b/src/lib/libcrypto/ec/ec.h
index a880ada8d5..8ae40ed869 100644
--- a/src/lib/libcrypto/ec/ec.h
+++ b/src/lib/libcrypto/ec/ec.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec.h,v 1.34 2023/04/18 08:46:08 tb Exp $ */ 1/* $OpenBSD: ec.h,v 1.35 2023/04/18 15:14:46 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 */
@@ -150,23 +150,6 @@ const EC_METHOD *EC_GFp_mont_method(void);
150const EC_METHOD *EC_GFp_nist_method(void); 150const EC_METHOD *EC_GFp_nist_method(void);
151#endif 151#endif
152 152
153#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
154/** Returns 64-bit optimized methods for nistp224
155 * \return EC_METHOD object
156 */
157const EC_METHOD *EC_GFp_nistp224_method(void);
158
159/** Returns 64-bit optimized methods for nistp256
160 * \return EC_METHOD object
161 */
162const EC_METHOD *EC_GFp_nistp256_method(void);
163
164/** Returns 64-bit optimized methods for nistp521
165 * \return EC_METHOD object
166 */
167const EC_METHOD *EC_GFp_nistp521_method(void);
168#endif
169
170#ifndef OPENSSL_NO_EC2M 153#ifndef OPENSSL_NO_EC2M
171/********************************************************************/ 154/********************************************************************/
172/* EC_METHOD for curves over GF(2^m) */ 155/* EC_METHOD for curves over GF(2^m) */