crypto/rsa.PrecomputedValues.Dq (field)
12 uses
crypto/rsa (current package)
rsa.go#L202: Dp, Dq *big.Int // D mod (P-1) (or mod Q-1)
rsa.go#L311: Dq: Dq,
rsa.go#L362: Dq: new(big.Int).SetBytes(dQ),
rsa.go#L541: if priv.Precomputed.Dp != nil && priv.Precomputed.Dq != nil && priv.Precomputed.Qinv != nil {
rsa.go#L544: priv.Precomputed.Dp.Bytes(), priv.Precomputed.Dq.Bytes(), priv.Precomputed.Qinv.Bytes())
rsa.go#L563: precomputed.Dq = new(big.Int).SetBytes(dQ)
rsa.go#L595: precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
rsa.go#L596: 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,
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)