type crypto/internal/nistec.P384Point

39 uses

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

	crypto/ecdh
		nist.go#L240: var p384 = &nistCurve[*nistec.P384Point]{

	crypto/ecdsa
		ecdsa.go#L638: var _p384 *nistCurve[*nistec.P384Point]
		ecdsa.go#L640: func p384() *nistCurve[*nistec.P384Point] {
		ecdsa.go#L642: 		_p384 = &nistCurve[*nistec.P384Point]{
		ecdsa.go#L643: 			newPoint: func() *nistec.P384Point { return nistec.NewP384Point() },

	crypto/elliptic
		nistec.go#L51: var p384 = &nistCurve[*nistec.P384Point]{