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