crypto/elliptic.CurveParams.BitSize (field)
16 uses
crypto/elliptic (current package)
elliptic.go#L112: byteLen := (curve.Params().BitSize + 7) / 8
elliptic.go#L128: byteLen := (curve.Params().BitSize + 7) / 8
elliptic.go#L158: byteLen := (curve.Params().BitSize + 7) / 8
elliptic.go#L185: byteLen := (curve.Params().BitSize + 7) / 8
nistec.go#L20: BitSize: 224,
nistec.go#L41: BitSize: 256,
nistec.go#L58: BitSize: 384,
nistec.go#L80: BitSize: 521,
nistec.go#L149: if x.BitLen() > curve.params.BitSize || y.BitLen() > curve.params.BitSize {
nistec.go#L153: byteLen := (curve.params.BitSize + 7) / 8
nistec.go#L168: byteLen := (curve.params.BitSize + 7) / 8
nistec.go#L263: byteLen := (curve.params.BitSize + 7) / 8
params.go#L20: BitSize int // the size of the underlying field
crypto/ecdsa
ecdsa.go#L581: bitSize := curve.curve.Params().BitSize
ecdsa.go#L605: byteLen := (curve.curve.Params().BitSize + 7) / 8
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. |