crypto/rsa.PrecomputedValues.Dq (field)

6 uses

	crypto/rsa (current package)
		rsa.go#L184: 	Dp, Dq *big.Int // D mod (P-1) (or mod Q-1)
		rsa.go#L466: 	priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
		rsa.go#L467: 	priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq)
		rsa.go#L536: 		m2 := new(big.Int).Exp(c, priv.Precomputed.Dq, priv.Primes[1])

	crypto/x509
		pkcs1.go#L120: 		Dq:      key.Precomputed.Dq,