main
Raw Download raw file
 1//go:build !amd64 || purego
 2// +build !amd64 purego
 3
 4package x448
 5
 6import fp "github.com/cloudflare/circl/math/fp448"
 7
 8func double(x, z *fp.Elt)             { doubleGeneric(x, z) }
 9func diffAdd(w *[5]fp.Elt, b uint)    { diffAddGeneric(w, b) }
10func ladderStep(w *[5]fp.Elt, b uint) { ladderStepGeneric(w, b) }
11func mulA24(z, x *fp.Elt)             { mulA24Generic(z, x) }