type crypto/internal/fips140/nistec.P256Point

54 uses

	crypto/internal/fips140/nistec (current package)
		p256_asm.go#L41: type P256Point struct {
		p256_asm.go#L48: func NewP256Point() *P256Point {
		p256_asm.go#L49: 	return &P256Point{
		p256_asm.go#L55: func (p *P256Point) SetGenerator() *P256Point {
		p256_asm.go#L65: func (p *P256Point) Set(q *P256Point) *P256Point {
		p256_asm.go#L78: func (p *P256Point) SetBytes(b []byte) (*P256Point, error) {
		p256_asm.go#L92: 		var r P256Point
		p256_asm.go#L108: 		var r P256Point
		p256_asm.go#L299: func p256MovCond(res, a, b *P256Point, cond int)
		p256_asm.go#L304: type p256Table [16]P256Point
		p256_asm.go#L310: func p256Select(res *P256Point, table *p256Table, idx int)
		p256_asm.go#L354: func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
		p256_asm.go#L361: func p256PointAddAsm(res, in1, in2 *P256Point) int
		p256_asm.go#L366: func p256PointDoubleAsm(res, in *P256Point)
		p256_asm.go#L396: func (q *P256Point) Add(r1, r2 *P256Point) *P256Point {
		p256_asm.go#L397: 	var sum, double P256Point
		p256_asm.go#L409: func (q *P256Point) Double(p *P256Point) *P256Point {
		p256_asm.go#L410: 	var double P256Point
		p256_asm.go#L418: func (r *P256Point) ScalarBaseMult(scalar []byte) (*P256Point, error) {
		p256_asm.go#L433: func (r *P256Point) ScalarMult(q *P256Point, scalar []byte) (*P256Point, error) {
		p256_asm.go#L467: func (p *P256Point) isInfinity() int {
		p256_asm.go#L474: func (p *P256Point) Bytes() []byte {
		p256_asm.go#L481: func (p *P256Point) bytes(out *[p256UncompressedLength]byte) []byte {
		p256_asm.go#L499: func (p *P256Point) affineFromMont(x, y *p256Element) {
		p256_asm.go#L513: func (p *P256Point) BytesX() ([]byte, error) {
		p256_asm.go#L520: func (p *P256Point) bytesX(out *[p256ElementLength]byte) ([]byte, error) {
		p256_asm.go#L538: func (p *P256Point) BytesCompressed() []byte {
		p256_asm.go#L545: func (p *P256Point) bytesCompressed(out *[p256CompressedLength]byte) []byte {
		p256_asm.go#L560: func (q *P256Point) Select(p1, p2 *P256Point, cond int) *P256Point {
		p256_asm.go#L635: func (p *P256Point) p256BaseMult(scalar *p256OrdElement) {
		p256_asm.go#L664: func (p *P256Point) p256ScalarMult(scalar *p256OrdElement) {
		p256_asm.go#L668: 	var t0, t1, t2, t3 P256Point

	crypto/internal/fips140/ecdh
		ecdh.go#L64: 	*nistec.P224Point | *nistec.P256Point | *nistec.P384Point | *nistec.P521Point
		ecdh.go#L87: func P256() *Curve[*nistec.P256Point] {
		ecdh.go#L88: 	return &Curve[*nistec.P256Point]{

	crypto/internal/fips140/ecdsa
		ecdsa.go#L63: 	*nistec.P224Point | *nistec.P256Point | *nistec.P384Point | *nistec.P521Point
		ecdsa.go#L100: func P256() *Curve[*nistec.P256Point] { return _P256() }
		ecdsa.go#L102: var _P256 = sync.OnceValue(func() *Curve[*nistec.P256Point] {
		ecdsa.go#L103: 	c := &Curve[*nistec.P256Point]{

	crypto/elliptic
		nistec.go#L31: 	nistCurve[*nistec.P256Point]
		nistec.go#L34: var p256 = &p256Curve{nistCurve[*nistec.P256Point]{