main
1//go:build !amd64 || purego
2// +build !amd64 purego
3
4package x25519
5
6import fp "github.com/cloudflare/circl/math/fp25519"
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) }