Symbol: EVP_PKEY_get0_EC_KEY
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
781
eckey = EVP_PKEY_get0_EC_KEY(pkey);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
926
params_eckey = EVP_PKEY_get0_EC_KEY(params);
crypto/openssh/regress/unittests/sshkey/test_file.c
274
c = EC_POINT_point2bn(EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(k1->pkey)),
crypto/openssh/regress/unittests/sshkey/test_file.c
275
EC_KEY_get0_public_key(EVP_PKEY_get0_EC_KEY(k1->pkey)),
crypto/openssh/regress/unittests/sshkey/test_file.c
279
EC_KEY_get0_private_key(EVP_PKEY_get0_EC_KEY(k1->pkey)), a);
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
295
ASSERT_PTR_NE(EVP_PKEY_get0_EC_KEY(ke->pkey), NULL);
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
296
ASSERT_PTR_NE(EC_KEY_get0_public_key(EVP_PKEY_get0_EC_KEY(ke->pkey)),
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
298
ASSERT_PTR_NE(EC_KEY_get0_private_key(EVP_PKEY_get0_EC_KEY(ke->pkey)),
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
352
ASSERT_PTR_NE(EVP_PKEY_get0_EC_KEY(k1->pkey), NULL);
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
354
ASSERT_PTR_NE(EC_KEY_get0_public_key(EVP_PKEY_get0_EC_KEY(ke->pkey)),
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
356
ASSERT_PTR_EQ(EC_KEY_get0_private_key(EVP_PKEY_get0_EC_KEY(k1->pkey)),
crypto/openssh/ssh-ecdsa.c
162
EC_KEY_get0_private_key(EVP_PKEY_get0_EC_KEY(key->pkey)))) != 0)
crypto/openssh/ssh-ecdsa.c
203
ec_from = EVP_PKEY_get0_EC_KEY(from->pkey);
crypto/openssh/ssh-ecdsa.c
273
EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(key->pkey)),
crypto/openssh/ssh-ecdsa.c
274
EC_KEY_get0_public_key(EVP_PKEY_get0_EC_KEY(key->pkey)));
crypto/openssh/ssh-keygen.c
394
EVP_PKEY_get0_EC_KEY(k->pkey)))
crypto/openssh/ssh-keygen.c
422
EVP_PKEY_get0_EC_KEY(k->pkey)))
crypto/openssh/ssh-keygen.c
829
EVP_PKEY_get0_EC_KEY(k->pkey), NULL, NULL, 0,
crypto/openssh/ssh-pkcs11.c
1036
if (EVP_PKEY_get0_EC_KEY(evp) == NULL) {
crypto/openssh/ssh-pkcs11.c
1040
if ((ec = EC_KEY_dup(EVP_PKEY_get0_EC_KEY(evp))) == NULL) {
crypto/openssh/sshbuf-getput-crypto.c
185
if ((ec = EVP_PKEY_get0_EC_KEY(pkey)) == NULL)
crypto/openssh/sshkey.c
1500
return sshkey_ecdsa_key_to_nid(EVP_PKEY_get0_EC_KEY(pkey));
crypto/openssh/sshkey.c
3343
EVP_PKEY_get0_EC_KEY(key->pkey),
crypto/openssh/sshkey.c
3618
sshkey_dump_ec_key(EVP_PKEY_get0_EC_KEY(prv->pkey));
crypto/openssl/crypto/asn1/i2d_evp.c
148
return i2o_ECPublicKey(EVP_PKEY_get0_EC_KEY(a), pp);
crypto/openssl/crypto/ec/ec_ameth.c
416
return EC_KEY_key2buf(EVP_PKEY_get0_EC_KEY(pkey),
crypto/openssl/crypto/ec/ec_pmeth.c
115
EC_KEY *ec = (EC_KEY *)EVP_PKEY_get0_EC_KEY(ctx->pkey);
crypto/openssl/crypto/ec/ec_pmeth.c
153
EC_KEY *ec = (EC_KEY *)EVP_PKEY_get0_EC_KEY(ctx->pkey);
crypto/openssl/crypto/ec/ec_pmeth.c
179
eckeypub = EVP_PKEY_get0_EC_KEY(ctx->peerkey);
crypto/openssl/crypto/ec/ec_pmeth.c
186
: (EC_KEY *)EVP_PKEY_get0_EC_KEY(ctx->pkey);
crypto/openssl/crypto/ec/ec_pmeth.c
276
const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(ctx->pkey);
crypto/openssl/crypto/ec/ec_pmeth.c
283
EC_KEY *ec_key = (EC_KEY *)EVP_PKEY_get0_EC_KEY(ctx->pkey);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1536
const EC_GROUP *grp = EC_KEY_get0_group(EVP_PKEY_get0_EC_KEY(pkey));
crypto/openssl/crypto/evp/ctrl_params_translate.c
1581
const EC_KEY *ec = EVP_PKEY_get0_EC_KEY(pkey);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1631
const EC_KEY *eckey = EVP_PKEY_get0_EC_KEY(pkey);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1663
const EC_KEY *eckey = EVP_PKEY_get0_EC_KEY(pkey);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1820
val = EC_KEY_decoded_from_explicit_params(EVP_PKEY_get0_EC_KEY(pkey));
crypto/openssl/crypto/evp/p_lib.c
2483
const EC_KEY *ec = EVP_PKEY_get0_EC_KEY(pkey);
crypto/openssl/crypto/evp/p_lib.c
2523
const EC_KEY *ec = EVP_PKEY_get0_EC_KEY(pkey);
crypto/openssl/include/openssl/evp.h
1422
const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey);