Home | History | Annotate | Download | only in apps

Lines Matching defs:pkey

1 /* apps/pkey.c */
78 EVP_PKEY *pkey=NULL;
186 BIO_printf(bio_err, "Usage pkey [options]\n");
231 pkey = load_pubkey(bio_err, infile, informat, 1,
234 pkey = load_key(bio_err, infile, informat, 1,
236 if (!pkey)
244 PEM_write_bio_PUBKEY(out,pkey);
246 PEM_write_bio_PrivateKey(out, pkey, cipher,
252 i2d_PUBKEY_bio(out, pkey);
254 i2d_PrivateKey_bio(out, pkey);
267 EVP_PKEY_print_public(out, pkey, 0, NULL);
269 EVP_PKEY_print_private(out, pkey, 0, NULL);
275 EVP_PKEY_free(pkey);