Lines Matching refs:pkey
78 EVP_PKEY *pkey=NULL; in MAIN() local
231 pkey = load_pubkey(bio_err, infile, informat, 1, in MAIN()
234 pkey = load_key(bio_err, infile, informat, 1, in MAIN()
236 if (!pkey) in MAIN()
244 PEM_write_bio_PUBKEY(out,pkey); in MAIN()
246 PEM_write_bio_PrivateKey(out, pkey, cipher, in MAIN()
252 i2d_PUBKEY_bio(out, pkey); in MAIN()
254 i2d_PrivateKey_bio(out, pkey); in MAIN()
267 EVP_PKEY_print_public(out, pkey, 0, NULL); in MAIN()
269 EVP_PKEY_print_private(out, pkey, 0, NULL); in MAIN()
275 EVP_PKEY_free(pkey); in MAIN()