type crypto/internal/nistec.P521Point

39 uses

	crypto/internal/nistec (current package)
		p521.go#L21: type P521Point struct {
		p521.go#L28: func NewP521Point() *P521Point {
		p521.go#L29: 	return &P521Point{
		p521.go#L37: func (p *P521Point) SetGenerator() *P521Point {
		p521.go#L45: func (p *P521Point) Set(q *P521Point) *P521Point {
		p521.go#L56: func (p *P521Point) SetBytes(b []byte) (*P521Point, error) {
		p521.go#L145: func (p *P521Point) Bytes() []byte {
		p521.go#L152: func (p *P521Point) bytes(out *[1 + 2*p521ElementLength]byte) []byte {
		p521.go#L169: func (p *P521Point) BytesX() ([]byte, error) {
		p521.go#L176: func (p *P521Point) bytesX(out *[p521ElementLength]byte) ([]byte, error) {
		p521.go#L190: func (p *P521Point) BytesCompressed() []byte {
		p521.go#L197: func (p *P521Point) bytesCompressed(out *[1 + p521ElementLength]byte) []byte {
		p521.go#L215: func (q *P521Point) Add(p1, p2 *P521Point) *P521Point {
		p521.go#L270: func (q *P521Point) Double(p *P521Point) *P521Point {
		p521.go#L316: func (q *P521Point) Select(p1, p2 *P521Point, cond int) *P521Point {
		p521.go#L326: type p521Table [15]*P521Point
		p521.go#L330: func (table *p521Table) Select(p *P521Point, n uint8) {
		p521.go#L342: func (p *P521Point) ScalarMult(q *P521Point, scalar []byte) (*P521Point, error) {
		p521.go#L392: func (p *P521Point) generatorTable() *[p521ElementLength * 2]p521Table {
		p521.go#L412: func (p *P521Point) ScalarBaseMult(scalar []byte) (*P521Point, error) {

	crypto/ecdh
		nist.go#L261: var p521 = &nistCurve[*nistec.P521Point]{

	crypto/ecdsa
		ecdsa.go#L651: var _p521 *nistCurve[*nistec.P521Point]
		ecdsa.go#L653: func p521() *nistCurve[*nistec.P521Point] {
		ecdsa.go#L655: 		_p521 = &nistCurve[*nistec.P521Point]{
		ecdsa.go#L656: 			newPoint: func() *nistec.P521Point { return nistec.NewP521Point() },

	crypto/elliptic
		nistec.go#L73: var p521 = &nistCurve[*nistec.P521Point]{