func crypto/internal/boring/bbig.Dec
12 uses
crypto/internal/boring/bbig (current package)
big.go#L24: func Dec(b boring.BigInt) *big.Int {
crypto/ecdsa
ecdsa.go#L166: return &PrivateKey{PublicKey: PublicKey{Curve: c, X: bbig.Dec(x), Y: bbig.Dec(y)}, D: bbig.Dec(d)}, nil
crypto/rsa
rsa.go#L303: N := bbig.Dec(bN)
rsa.go#L304: E := bbig.Dec(bE)
rsa.go#L305: D := bbig.Dec(bD)
rsa.go#L306: P := bbig.Dec(bP)
rsa.go#L307: Q := bbig.Dec(bQ)
rsa.go#L308: Dp := bbig.Dec(bDp)
rsa.go#L309: Dq := bbig.Dec(bDq)
rsa.go#L310: Qinv := bbig.Dec(bQinv)
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. |