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,
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |