New compile time option OPENSSL_SSL_TRACE_CRYPTO, when set this passes
[oweals/openssl.git] / apps / apps.c
index 83c06bb65a98b203af8830c2d578f70f26c9e42b..490ae3b61bdc810a238de7ec6649e46dfc4b9b40 100644 (file)
@@ -2376,6 +2376,12 @@ int args_verify(char ***pargs, int *pargc,
                flags |= X509_V_FLAG_CHECK_SS_SIGNATURE;
        else if (!strcmp(arg, "-trusted_first"))
                flags |= X509_V_FLAG_TRUSTED_FIRST;
+       else if (!strcmp(arg, "-suiteB_128_only"))
+               flags |= X509_V_FLAG_SUITEB_128_LOS_ONLY;
+       else if (!strcmp(arg, "-suiteB_128"))
+               flags |= X509_V_FLAG_SUITEB_128_LOS;
+       else if (!strcmp(arg, "-suiteB_192"))
+               flags |= X509_V_FLAG_SUITEB_192_LOS;
        else
                return 0;