diff options
author | tb <> | 2024-11-05 11:05:01 +0000 |
---|---|---|
committer | tb <> | 2024-11-05 11:05:01 +0000 |
commit | eb765cd4a2b07da3fc92af29a4762d2c91e71441 (patch) | |
tree | 701a89c82b106700d9a949b62d0d172a0faa0d02 /src/lib/libcrypto/Makefile | |
parent | 8b19337000a05871189304b9adfbddcca405e429 (diff) | |
download | openbsd-eb765cd4a2b07da3fc92af29a4762d2c91e71441.tar.gz openbsd-eb765cd4a2b07da3fc92af29a4762d2c91e71441.tar.bz2 openbsd-eb765cd4a2b07da3fc92af29a4762d2c91e71441.zip |
Move OPENSSL_cleanse() to crypto_legacy()
The correct spelling is explicit_bzero() and it doesn't need its own file.
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r-- | src/lib/libcrypto/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index ccc5e0b5c6..a8de346633 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.220 2024/11/05 11:02:58 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.221 2024/11/05 11:05:01 tb Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -62,7 +62,6 @@ SRCS+= crypto_init.c | |||
62 | SRCS+= crypto_legacy.c | 62 | SRCS+= crypto_legacy.c |
63 | SRCS+= crypto_lock.c | 63 | SRCS+= crypto_lock.c |
64 | SRCS+= malloc-wrapper.c | 64 | SRCS+= malloc-wrapper.c |
65 | SRCS+= mem_clr.c | ||
66 | SRCS+= mem_dbg.c | 65 | SRCS+= mem_dbg.c |
67 | SRCS+= o_fips.c | 66 | SRCS+= o_fips.c |
68 | 67 | ||