Lines Matching refs:from
594 * pass it from get_param to verify_param, since the latter checks
737 static int rsa_int_export_to(const EVP_PKEY *from, int rsa_type,
742 RSA *rsa = from->pkey.rsa;
830 /* Create the older RSA_PSS_PARAMS from RSA_PSS_PARAMS_30 data */
865 static int rsa_pkey_export_to(const EVP_PKEY *from, void *to_keydata,
869 return rsa_int_export_to(from, RSA_FLAG_TYPE_RSA, to_keydata,
873 static int rsa_pss_pkey_export_to(const EVP_PKEY *from, void *to_keydata,
877 return rsa_int_export_to(from, RSA_FLAG_TYPE_RSASSAPSS, to_keydata,
891 static int rsa_pkey_copy(EVP_PKEY *to, EVP_PKEY *from)
893 RSA *rsa = from->pkey.rsa;
903 ret = EVP_PKEY_assign(to, from->type, dupkey);