Symbol: load_pubkey
crypto/openssl/apps/cmp.c
1949
pkey = load_pubkey(file, format, 0, pass, engine, desc);
crypto/openssl/apps/dgst.c
304
sigkey = load_pubkey(keyfile, keyform, 0, NULL, e, "public key");
crypto/openssl/apps/dsa.c
191
pkey = load_pubkey(infile, informat, 1, passin, e, "public key");
crypto/openssl/apps/ec.c
190
eckey = load_pubkey(infile, informat, 1, passin, e, "public key");
crypto/openssl/apps/include/apps.h
134
EVP_PKEY *load_pubkey(const char *uri, int format, int maybe_stdin,
crypto/openssl/apps/pkey.c
226
pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key");
crypto/openssl/apps/pkeyutl.c
663
pkey = load_pubkey(keyfile, keyform, 0, NULL, e, "public key");
crypto/openssl/apps/pkeyutl.c
799
peer = load_pubkey(file, peerform, 0, NULL, engine, "peer key");
crypto/openssl/apps/rsa.c
264
pkey = load_pubkey(infile, tmpformat, 1, passin, e, "public key");
crypto/openssl/apps/rsautl.c
210
pkey = load_pubkey(keyfile, keyformat, 0, NULL, e, "public key");
crypto/openssl/apps/x509.c
723
if ((pubkey = load_pubkey(pubkeyfile, keyformat, 0, NULL, e,
crypto/openssl/crypto/engine/eng_lib.c
71
e->load_pubkey = NULL;
crypto/openssl/crypto/engine/eng_list.c
401
dest->load_pubkey = src->load_pubkey;
crypto/openssl/crypto/engine/eng_local.h
132
ENGINE_LOAD_KEY_PTR load_pubkey;
crypto/openssl/crypto/engine/eng_pkey.c
102
if (!e->load_pubkey) {
crypto/openssl/crypto/engine/eng_pkey.c
106
pkey = e->load_pubkey(e, key_id, ui_method, callback_data);
crypto/openssl/crypto/engine/eng_pkey.c
26
e->load_pubkey = loadpub_f;
crypto/openssl/crypto/engine/eng_pkey.c
45
return e->load_pubkey;