From: Shenghou Ma Date: Tue, 11 Mar 2014 17:06:01 +0000 (-0400) Subject: crypto/rsa: fix docs for PrecomputedValues.Qinv X-Git-Tag: go1.3beta1~399 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=da291de5a2bb7a4c7b92133a3e1765d279ca6a32;p=gostls13.git crypto/rsa: fix docs for PrecomputedValues.Qinv Fixes #7507. LGTM=agl R=agl CC=golang-codereviews https://golang.org/cl/74090043 --- diff --git a/src/pkg/crypto/rsa/rsa.go b/src/pkg/crypto/rsa/rsa.go index c8f1febe64..bce6ba4eba 100644 --- a/src/pkg/crypto/rsa/rsa.go +++ b/src/pkg/crypto/rsa/rsa.go @@ -60,7 +60,7 @@ type PrivateKey struct { type PrecomputedValues struct { Dp, Dq *big.Int // D mod (P-1) (or mod Q-1) - Qinv *big.Int // Q^-1 mod Q + Qinv *big.Int // Q^-1 mod P // CRTValues is used for the 3rd and subsequent primes. Due to a // historical accident, the CRT for the first two primes is handled