crypto/ecdsa.PrivateKey.Params (method, view implemented interface methods)

19 uses

	crypto/ecdsa (current package)
		ecdsa.go#L134: 	params := c.Params()
		ecdsa.go#L169: 	orderBits := c.Params().N.BitLen()
		ecdsa.go#L204: 	entropylen := (priv.Curve.Params().BitSize + 7) / 16
		ecdsa.go#L241: 	N := c.Params().N
		ecdsa.go#L294: 	N := c.Params().N
		ecdsa.go#L308: 	N := c.Params().N

	crypto/elliptic
		elliptic.go#L29: 	Params() *CurveParams
		elliptic.go#L286: 	N := curve.Params().N
		elliptic.go#L316: 	byteLen := (curve.Params().BitSize + 7) / 8
		elliptic.go#L330: 	byteLen := (curve.Params().BitSize + 7) / 8
		elliptic.go#L341: 	byteLen := (curve.Params().BitSize + 7) / 8
		elliptic.go#L348: 	p := curve.Params().P
		elliptic.go#L364: 	byteLen := (curve.Params().BitSize + 7) / 8
		elliptic.go#L371: 	p := curve.Params().P
		elliptic.go#L377: 	y = curve.Params().polynomial(x)

	crypto/tls
		auth.go#L275: 			return fmt.Errorf("tls: unsupported certificate curve (%s)", pub.Curve.Params().Name)
		key_schedule.go#L176: 	sharedKey := make([]byte, (curve.Params().BitSize+7)/8)

	crypto/x509
		sec1.go#L55: 	privateKey := make([]byte, (key.Curve.Params().N.BitLen()+7)/8)
		sec1.go#L94: 	curveOrder := curve.Params().N