Lines Matching refs:dmq1
332 static int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) in RSA_set0_crt_params() argument
335 r->dmq1 = dmq1; in RSA_set0_crt_params()
354 static void RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1, const BIGNU… in RSA_get0_crt_params() argument
357 *dmq1 = r->dmq1; in RSA_get0_crt_params()
3942 BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp; in php_openssl_pkey_init_legacy_rsa() local
3958 OPENSSL_PKEY_SET_BN(data, dmq1); in php_openssl_pkey_init_legacy_rsa()
3960 if ((dmp1 || dmq1 || iqmp) && !RSA_set0_crt_params(rsa, dmp1, dmq1, iqmp)) { in php_openssl_pkey_init_legacy_rsa()
3972 BIGNUM *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in php_openssl_pkey_init_rsa() local
3984 OPENSSL_PKEY_SET_BN(data, dmq1); in php_openssl_pkey_init_rsa()
4005 if (dmq1) { in php_openssl_pkey_init_rsa()
4006 OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_RSA_EXPONENT2, dmq1); in php_openssl_pkey_init_rsa()
4033 BN_free(dmq1); in php_openssl_pkey_init_rsa()
5272 const BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp; in PHP_FUNCTION() local
5276 RSA_get0_crt_params(rsa, &dmp1, &dmq1, &iqmp); in PHP_FUNCTION()
5285 OPENSSL_PKEY_GET_BN(z_rsa, dmq1); in PHP_FUNCTION()