Lines Matching +full:dsa +full:- +full:specific
2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
20 #include <openssl/dsa.h>
47 {"help", OPT_HELP, '-', "Display this summary"},
48 {"", OPT_CIPHER, '-', "Any supported cipher"},
50 {"pvk-strong", OPT_PVK_STRONG, '-', "Enable 'Strong' PVK encoding level (default)"},
51 {"pvk-weak", OPT_PVK_WEAK, '-', "Enable 'Weak' PVK encoding level"},
52 {"pvk-none", OPT_PVK_NONE, '-', "Don't enforce PVK encoding"},
61 {"pubin", OPT_PUBIN, '-', "Expect a public key in input file"},
67 {"noout", OPT_NOOUT, '-', "Don't print key out"},
68 {"text", OPT_TEXT, '-', "Print the key in text"},
69 {"modulus", OPT_MODULUS, '-', "Print the DSA public value"},
70 {"pubout", OPT_PUBOUT, '-', "Output public key, not private"},
102 BIO_printf(bio_err, "%s: Use -help for summary.\n", prog); in dsa_main()
135 pvk_encr = (o - OPT_PVK_NONE); in dsa_main()
181 BIO_printf(bio_err, "read DSA key\n"); in dsa_main()
192 if (!EVP_PKEY_is_a(pkey, "DSA")) { in dsa_main()
193 BIO_printf(bio_err, "Not a DSA key\n"); in dsa_main()
228 BIO_printf(bio_err, "writing DSA key\n"); in dsa_main()
250 output_structure = "type-specific"; in dsa_main()
288 params[0] = OSSL_PARAM_construct_int("encrypt-level", &pvk_encr); in dsa_main()