/openssl-master/apps/ |
A D | dsa.c | 90 const char *output_type = NULL, *ciphername = NULL; in dsa_main() local 230 output_type = "DER"; in dsa_main() 232 output_type = "PEM"; in dsa_main() 234 output_type = "MSBLOB"; in dsa_main() 240 output_type = "PVK"; in dsa_main() 263 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, output_type, in dsa_main() 266 BIO_printf(bio_err, "%s format not supported\n", output_type); in dsa_main()
|
A D | rsa.c | 137 const char *output_type = NULL; in rsa_main() local 321 output_type = "DER"; in rsa_main() 323 output_type = "PEM"; in rsa_main() 325 output_type = "MSBLOB"; in rsa_main() 331 output_type = "PVK"; in rsa_main() 364 output_type, output_structure, in rsa_main() 369 BIO_printf(bio_err, "%s format not supported\n", output_type); in rsa_main()
|
A D | ec.c | 244 const char *output_type = outformat == FORMAT_ASN1 ? "DER" : "PEM"; in ec_main() local 260 output_type, output_structure, in ec_main()
|
/openssl-master/crypto/encode_decode/ |
A D | encoder_lib.c | 160 const char *output_type) in OSSL_ENCODER_CTX_set_output_type() argument 162 if (!ossl_assert(ctx != NULL) || !ossl_assert(output_type != NULL)) { in OSSL_ENCODER_CTX_set_output_type() 167 ctx->output_type = output_type; in OSSL_ENCODER_CTX_set_output_type() 219 encoder_inst->output_type = ossl_property_get_string_value(libctx, prop); in ossl_encoder_instance_new() 220 if (encoder_inst->output_type == NULL) { in ossl_encoder_instance_new() 381 return encoder_inst->output_type; in OSSL_ENCODER_INSTANCE_get_output_type() 455 if (data->ctx->output_type != NULL in encoder_process() 457 data->ctx->output_type) != 0) { in encoder_process() 462 current_output_type, data->ctx->output_type); in encoder_process()
|
A D | encoder_pkey.c | 77 const char *output_type; member 265 encoder_data.output_type = ctx->output_type; in ossl_encoder_ctx_setup_for_pkey() 315 const char *output_type, in OSSL_ENCODER_CTX_new_for_pkey() argument 349 output_type, output_struct); in OSSL_ENCODER_CTX_new_for_pkey() 352 if (OSSL_ENCODER_CTX_set_output_type(ctx, output_type) in OSSL_ENCODER_CTX_new_for_pkey()
|
A D | encoder_local.h | 61 const char *output_type; /* Never NULL */ member 81 const char *output_type; member
|
A D | decoder_lib.c | 345 const char *output_type; member 372 if (OSSL_DECODER_is_a(decoder, data->output_type)) { in collect_extra_decoder() 533 data.output_type in OSSL_DECODER_CTX_add_extra()
|
/openssl-master/crypto/asn1/ |
A D | i2d_evp.c | 29 const char *output_type; member 41 ret == -1 && output_info->output_type != NULL; in i2d_provided() 54 output_info->output_type, in i2d_provided()
|
/openssl-master/include/openssl/ |
A D | encoder.h | 71 const char *output_type); 117 const char *output_type,
|
/openssl-master/doc/man3/ |
A D | OSSL_ENCODER_CTX_new_for_pkey.pod | 19 const char *output_type, 43 L<OSSL_ENCODER_to_bio(3)>. I<output_type> determines the final output 45 should be included in the output. I<output_type> is further discussed in 52 the encoding named by I<output_type>, with the outermost structure named by
|
A D | OSSL_ENCODER_CTX.pod | 42 const char *output_type);
|
/openssl-master/test/ |
A D | endecode_test.c | 132 const char *output_type, const char *output_structure, 149 int selection, const char *output_type, in test_encode_decode() argument 169 output_type, output_structure, pass, pcipher)) in test_encode_decode() 172 output_type, output_structure, in test_encode_decode() 176 output_type, output_structure, pass, pcipher))) in test_encode_decode() 216 const char *output_type, in encode_EVP_PKEY_prov() argument 228 output_type, in encode_EVP_PKEY_prov() 332 ossl_unused const char *output_type, in encode_EVP_PKEY_legacy_PEM() argument 372 ossl_unused const char *output_type, in encode_EVP_PKEY_MSBLOB() argument 417 ossl_unused const char *output_type, in encode_EVP_PKEY_PVK() argument
|
A D | evp_pkey_provided_test.c | 164 const char *output_type, *output_structure; in test_print_key_type_using_encoder() local 172 output_type = "TEXT"; in test_print_key_type_using_encoder() 179 output_type = "PEM"; in test_print_key_type_using_encoder() 186 output_type = "DER"; in test_print_key_type_using_encoder() 193 output_type = "TEXT"; in test_print_key_type_using_encoder() 200 output_type = "PEM"; in test_print_key_type_using_encoder() 207 output_type = "DER"; in test_print_key_type_using_encoder() 224 output_type, in test_print_key_type_using_encoder()
|