Lines Matching defs:pkey
81 EVP_PKEY *pkey = NULL;
183 pkey = load_pubkey(infile, informat, 1, passin, e, "public key");
185 pkey = load_key(infile, informat, 1, passin, e, "private key");
187 if (pkey == NULL) {
192 if (!EVP_PKEY_is_a(pkey, "DSA")) {
203 if ((pubin && EVP_PKEY_print_public(out, pkey, 0, NULL) <= 0)
204 || (!pubin && EVP_PKEY_print_private(out, pkey, 0, NULL) <= 0)) {
214 if (!EVP_PKEY_get_bn_param(pkey, "pub", &pub_key)) {
263 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, output_type,
305 EVP_PKEY_free(pkey);