Symbol: EVP_PKEY_assign
crypto/libressl/crypto/cmac/cm_pmeth.c
104
EVP_PKEY_assign(pkey, EVP_PKEY_CMAC, cmkey);
crypto/libressl/crypto/gost/gost89imit_pmeth.c
123
EVP_PKEY_assign(pkey, NID_id_Gost28147_89_MAC, keydata);
crypto/libressl/crypto/gost/gostr341001_ameth.c
611
if (EVP_PKEY_assign(to, EVP_PKEY_base_id(from), eto) == 0) {
crypto/libressl/crypto/gost/gostr341001_pmeth.c
514
if (EVP_PKEY_assign(sec_key, EVP_PKEY_base_id(pubk),
crypto/libressl/crypto/hmac/hm_ameth.c
122
if (EVP_PKEY_assign(pkey, EVP_PKEY_HMAC, os) == 0)
crypto/libressl/crypto/hmac/hm_pmeth.c
140
EVP_PKEY_assign(pkey, EVP_PKEY_HMAC, hkey);
crypto/libressl/crypto/rsa/rsa_ameth.c
174
if (!EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa)) {
crypto/libressl/crypto/rsa/rsa_ameth.c
200
EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa);
crypto/libressl/crypto/rsa/rsa_ameth.c
257
EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa);
crypto/libressl/crypto/rsa/rsa_pmeth.c
771
EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, rsa);
crypto/libressl/include/openssl/evp.h
310
#define EVP_PKEY_assign_RSA(pkey,rsa) EVP_PKEY_assign((pkey),EVP_PKEY_RSA,\
crypto/libressl/include/openssl/evp.h
315
#define EVP_PKEY_assign_DSA(pkey,dsa) EVP_PKEY_assign((pkey),EVP_PKEY_DSA,\
crypto/libressl/include/openssl/evp.h
320
#define EVP_PKEY_assign_DH(pkey,dh) EVP_PKEY_assign((pkey),EVP_PKEY_DH,\
crypto/libressl/include/openssl/evp.h
325
#define EVP_PKEY_assign_EC_KEY(pkey,eckey) EVP_PKEY_assign((pkey),EVP_PKEY_EC,\
crypto/libressl/include/openssl/evp.h
330
#define EVP_PKEY_assign_GOST(pkey,gostkey) EVP_PKEY_assign((pkey),EVP_PKEY_GOSTR01,\
crypto/libressl/include/openssl/evp.h
795
int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key);