func crypto/internal/nistec.NewP384Point

28 uses

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

	crypto/ecdh
		nist.go#L242: 	newPoint:    nistec.NewP384Point,

	crypto/ecdsa
		ecdsa.go#L643: 			newPoint: func() *nistec.P384Point { return nistec.NewP384Point() },

	crypto/elliptic
		nistec.go#L52: 	newPoint: nistec.NewP384Point,