load_pubkey
pkey = load_pubkey(file, format, 0, pass, engine, desc);
sigkey = load_pubkey(keyfile, keyform, 0, NULL, e, "public key");
pkey = load_pubkey(infile, informat, 1, passin, e, "public key");
eckey = load_pubkey(infile, informat, 1, passin, e, "public key");
EVP_PKEY *load_pubkey(const char *uri, int format, int maybe_stdin,
pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
pkey = load_pubkey(keyfile, keyform, 0, NULL, e, "public key");
peer = load_pubkey(file, peerform, 0, NULL, engine, "peer key");
pkey = load_pubkey(infile, tmpformat, 1, passin, e, "public key");
pkey = load_pubkey(keyfile, keyformat, 0, NULL, e, "public key");
if ((pubkey = load_pubkey(pubkeyfile, keyformat, 0, NULL, e,
e->load_pubkey = NULL;
dest->load_pubkey = src->load_pubkey;
ENGINE_LOAD_KEY_PTR load_pubkey;
if (!e->load_pubkey) {
pkey = e->load_pubkey(e, key_id, ui_method, callback_data);
e->load_pubkey = loadpub_f;
return e->load_pubkey;