diff options
author | tb <> | 2024-07-08 05:59:10 +0000 |
---|---|---|
committer | tb <> | 2024-07-08 05:59:10 +0000 |
commit | 5dae2748533215faccdef012f6c3aafefd3a6812 (patch) | |
tree | 4ad23b13c2377dafba4b5836f54421095a661066 /src/usr.bin/openssl/openssl.c | |
parent | 154cc09bdfc1d6f754469183268dd816364a7cd4 (diff) | |
download | openbsd-5dae2748533215faccdef012f6c3aafefd3a6812.tar.gz openbsd-5dae2748533215faccdef012f6c3aafefd3a6812.tar.bz2 openbsd-5dae2748533215faccdef012f6c3aafefd3a6812.zip |
Remove spkac subcommand
Google killed efforts to have SPKAC in html5 by zapping it from chrome
a decade ago. This effort doesn't look like it's going anywhere:
https://datatracker.ietf.org/doc/draft-leggett-spkac/
Unfortunately, PHP and Ruby still support NETSCAPE_SPKI, so we can't
kill that code, but I see no real reason we need to support this in our
openssl command. If the need should arise we can write a somewhat less
poor version of this.
ok jsing
Diffstat (limited to 'src/usr.bin/openssl/openssl.c')
-rw-r--r-- | src/usr.bin/openssl/openssl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/openssl.c b/src/usr.bin/openssl/openssl.c index 7a42b70f2b..adafb0bc71 100644 --- a/src/usr.bin/openssl/openssl.c +++ b/src/usr.bin/openssl/openssl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: openssl.c,v 1.36 2024/02/03 15:58:34 beck Exp $ */ | 1 | /* $OpenBSD: openssl.c,v 1.37 2024/07/08 05:59:10 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -184,7 +184,6 @@ FUNCTION functions[] = { | |||
184 | #ifndef OPENSSL_NO_SPEED | 184 | #ifndef OPENSSL_NO_SPEED |
185 | { FUNC_TYPE_GENERAL, "speed", speed_main }, | 185 | { FUNC_TYPE_GENERAL, "speed", speed_main }, |
186 | #endif | 186 | #endif |
187 | { FUNC_TYPE_GENERAL, "spkac", spkac_main }, | ||
188 | { FUNC_TYPE_GENERAL, "ts", ts_main }, | 187 | { FUNC_TYPE_GENERAL, "ts", ts_main }, |
189 | { FUNC_TYPE_GENERAL, "verify", verify_main }, | 188 | { FUNC_TYPE_GENERAL, "verify", verify_main }, |
190 | { FUNC_TYPE_GENERAL, "version", version_main }, | 189 | { FUNC_TYPE_GENERAL, "version", version_main }, |