crypto/rsa.PrecomputedValues.Qinv (field)

5 uses

	crypto/rsa (current package)
		rsa.go#L205: 	Qinv   *big.Int // Q^-1 mod P
		rsa.go#L339: 				Qinv:      Qinv,
		rsa.go#L617: 	priv.Precomputed.Qinv = new(big.Int).ModInverse(priv.Primes[1], priv.Primes[0])
		rsa.go#L665: 		Qinv, err := bigmod.NewNat().SetBytes(priv.Precomputed.Qinv.Bytes(), P)

	crypto/x509
		pkcs1.go#L121: 		Qinv:    key.Precomputed.Qinv,