From 5dae2748533215faccdef012f6c3aafefd3a6812 Mon Sep 17 00:00:00 2001 From: tb <> Date: Mon, 8 Jul 2024 05:59:10 +0000 Subject: 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 --- src/usr.bin/openssl/openssl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/usr.bin/openssl/openssl.c') 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 @@ -/* $OpenBSD: openssl.c,v 1.36 2024/02/03 15:58:34 beck Exp $ */ +/* $OpenBSD: openssl.c,v 1.37 2024/07/08 05:59:10 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -184,7 +184,6 @@ FUNCTION functions[] = { #ifndef OPENSSL_NO_SPEED { FUNC_TYPE_GENERAL, "speed", speed_main }, #endif - { FUNC_TYPE_GENERAL, "spkac", spkac_main }, { FUNC_TYPE_GENERAL, "ts", ts_main }, { FUNC_TYPE_GENERAL, "verify", verify_main }, { FUNC_TYPE_GENERAL, "version", version_main }, -- cgit v1.2.3-55-g6feb