crypto/rsa.PrecomputedValues.Dq (field)

13 uses

	crypto/rsa (current package)
		rsa.go#L205: 	Dp, Dq *big.Int // D mod (P-1) (or mod Q-1)
		rsa.go#L266: 		bigIntEqualToBytes(priv.Precomputed.Dq, dQ) &&
		rsa.go#L345: 				Dq:        Dq,
		rsa.go#L398: 			Dq:        new(big.Int).SetBytes(dQ),
		rsa.go#L582: 	if priv.Precomputed.Dp != nil && priv.Precomputed.Dq != nil && priv.Precomputed.Qinv != nil {
		rsa.go#L585: 			priv.Precomputed.Dp.Bytes(), priv.Precomputed.Dq.Bytes(), priv.Precomputed.Qinv.Bytes())
		rsa.go#L604: 	precomputed.Dq = new(big.Int).SetBytes(dQ)
		rsa.go#L636: 	precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
		rsa.go#L637: 	precomputed.Dq.Mod(priv.D, precomputed.Dq)

	crypto/x509
		pkcs1.go#L92: 	key.Precomputed.Dq = priv.Dq
		pkcs1.go#L109: 			key.Precomputed.Dq = nil
		pkcs1.go#L149: 		Dq:      key.Precomputed.Dq,