Enable openssl pkey -{,pub}check and pkeyparam -check
authortb <tb@openbsd.org>
Fri, 14 Jan 2022 10:17:30 +0000 (10:17 +0000)
committertb <tb@openbsd.org>
Fri, 14 Jan 2022 10:17:30 +0000 (10:17 +0000)
usr.bin/openssl/pkey.c
usr.bin/openssl/pkeyparam.c

index 9134fc7..dcddd97 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: pkey.c,v 1.16 2022/01/10 12:17:49 tb Exp $ */
+/* $OpenBSD: pkey.c,v 1.17 2022/01/14 10:17:30 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006
  */
@@ -266,7 +266,6 @@ pkey_main(int argc, char **argv)
        if (!pkey)
                goto end;
 
-#if notyet
        if (pkey_config.check) {
                if (!pkey_check(out, pkey, EVP_PKEY_check, "Key pair"))
                        goto end;
@@ -274,7 +273,6 @@ pkey_main(int argc, char **argv)
                if (!pkey_check(out, pkey, EVP_PKEY_public_check, "Public key"))
                        goto end;
        }
-#endif
 
        if (!pkey_config.noout) {
                if (pkey_config.outformat == FORMAT_PEM) {
index 6ac4558..924c39e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: pkeyparam.c,v 1.13 2022/01/10 12:17:49 tb Exp $ */
+/* $OpenBSD: pkeyparam.c,v 1.14 2022/01/14 10:17:30 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006
  */
@@ -165,12 +165,10 @@ pkeyparam_main(int argc, char **argv)
                goto end;
        }
 
-#if notyet
        if (pkeyparam_config.check) {
                if (!pkey_check(out, pkey, EVP_PKEY_param_check, "Parameters"))
                        goto end;
        }
-#endif
 
        if (!pkeyparam_config.noout)
                PEM_write_bio_Parameters(out, pkey);