d2i_AutoPrivateKey
d2i = (D2I_OF(void))d2i_AutoPrivateKey;
return ASN1_d2i_fp_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, fp, a);
return ASN1_d2i_bio_of(EVP_PKEY, EVP_PKEY_new, d2i_AutoPrivateKey, bp, a);
DO_TEST_PRINT_PCTX(EVP_PKEY, d2i_AutoPrivateKey, i2d_PrivateKey, EVP_PKEY_print_private);
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
if (!TEST_ptr(pkey = d2i_AutoPrivateKey(NULL, &p, input_len))
pkey = d2i_AutoPrivateKey(NULL, &bytes, len);
pkey = d2i_AutoPrivateKey(NULL, &key_bytes, sizeof(KEY1));