func crypto/internal/nistec.NewP224Point

27 uses

	crypto/internal/nistec (current package)
		p224.go#L28: func NewP224Point() *P224Point {
		p224.go#L60: 		return p.Set(NewP224Point()), nil
		p224.go#L334: 	p.Set(NewP224Point())
		p224.go#L345: 	var table = p224Table{NewP224Point(), NewP224Point(), NewP224Point(),
		p224.go#L346: 		NewP224Point(), NewP224Point(), NewP224Point(), NewP224Point(),
		p224.go#L347: 		NewP224Point(), NewP224Point(), NewP224Point(), NewP224Point(),
		p224.go#L348: 		NewP224Point(), NewP224Point(), NewP224Point(), NewP224Point()}
		p224.go#L357: 	t := NewP224Point()
		p224.go#L358: 	p.Set(NewP224Point())
		p224.go#L395: 		base := NewP224Point().SetGenerator()
		p224.go#L397: 			p224GeneratorTable[i][0] = NewP224Point().Set(base)
		p224.go#L399: 				p224GeneratorTable[i][j] = NewP224Point().Add(p224GeneratorTable[i][j-1], base)
		p224.go#L424: 	t := NewP224Point()
		p224.go#L425: 	p.Set(NewP224Point())

	crypto/ecdsa
		ecdsa.go#L617: 			newPoint: func() *nistec.P224Point { return nistec.NewP224Point() },

	crypto/elliptic
		nistec.go#L14: 	newPoint: nistec.NewP224Point,