aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/internal/edwards25519/field/fe_amd64.go
blob: 00bf8f4479225b29048dec9f1d899c242f6bfef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by command: go run fe_amd64_asm.go -out ../fe_amd64.s -stubs ../fe_amd64.go -pkg field. DO NOT EDIT.

//go:build !purego

package field

// feMul sets out = a * b. It works like feMulGeneric.
//
//go:noescape
func feMul(out *Element, a *Element, b *Element)

// feSquare sets out = a * a. It works like feSquareGeneric.
//
//go:noescape
func feSquare(out *Element, a *Element)