diff options
author | jsing <> | 2023-01-14 15:45:44 +0000 |
---|---|---|
committer | jsing <> | 2023-01-14 15:45:44 +0000 |
commit | a545377353a479e357ae5fb9be8294f7137820d5 (patch) | |
tree | 2beaa725f80865b4e4c7d3384563e3ed4940579e /src/lib/libcrypto/arch/i386 | |
parent | 084bc92f915a6224b074c53efb55f3f8b277d2e2 (diff) | |
download | openbsd-a545377353a479e357ae5fb9be8294f7137820d5.tar.gz openbsd-a545377353a479e357ae5fb9be8294f7137820d5.tar.bz2 openbsd-a545377353a479e357ae5fb9be8294f7137820d5.zip |
Remove unused Elliptic Curve code.
For various reasons, the ecp_nistp* and ecp_nistz* code is unused. While
ecp_nistp* was being compiled, it is disabled due to
OPENSSL_NO_EC_NISTP_64_GCC_128 being defined. On the other hand,
ecp_nistz* was not even being built.
We will bring in new versions or alternative versions of such code, if we
end up enabling it in the future. For now it is just causing complexity
(and grep noise) while trying to improve the EC code.
Discussed with tb@
Diffstat (limited to 'src/lib/libcrypto/arch/i386')
-rw-r--r-- | src/lib/libcrypto/arch/i386/Makefile.inc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/arch/i386/Makefile.inc b/src/lib/libcrypto/arch/i386/Makefile.inc index 7986a0f54e..67c22262e6 100644 --- a/src/lib/libcrypto/arch/i386/Makefile.inc +++ b/src/lib/libcrypto/arch/i386/Makefile.inc | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.6 2017/08/20 17:53:13 espie Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.7 2023/01/14 15:45:43 jsing Exp $ |
2 | 2 | ||
3 | # i386-specific libcrypto build rules | 3 | # i386-specific libcrypto build rules |
4 | 4 | ||
@@ -28,10 +28,6 @@ SSLASM+= camellia cmll-x86 | |||
28 | # des | 28 | # des |
29 | SRCS+= fcrypt_b.c | 29 | SRCS+= fcrypt_b.c |
30 | SSLASM+= des des-586 | 30 | SSLASM+= des des-586 |
31 | # # ec | ||
32 | # CFLAGS+= -DECP_NISTZ256_ASM | ||
33 | # SRCS+= ecp_nistz256.c | ||
34 | # SSLASM+= ec ecp_nistz256-x86 | ||
35 | # md5 | 31 | # md5 |
36 | CFLAGS+= -DMD5_ASM | 32 | CFLAGS+= -DMD5_ASM |
37 | SSLASM+= md5 md5-586 | 33 | SSLASM+= md5 md5-586 |