crypto/rsa.PrecomputedValues.Dp (field)

8 uses

	crypto/rsa (current package)
		rsa.go#L204: 	Dp, Dq *big.Int // D mod (P-1) (or mod Q-1)
		rsa.go#L337: 				Dp:        Dp,
		rsa.go#L607: 	if priv.Precomputed.Dp != nil {
		rsa.go#L611: 	priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne)
		rsa.go#L612: 	priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp)
		rsa.go#L675: 		m = bigmod.NewNat().Exp(t0.Mod(c, P), priv.Precomputed.Dp.Bytes(), P)

	crypto/x509
		pkcs1.go#L119: 		Dp:      key.Precomputed.Dp,