File: fp_noasm.go

package info (click to toggle)
golang-github-cloudflare-circl 1.0.0%2B20200724-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,788 kB
  • sloc: asm: 19,418; ansic: 1,289; makefile: 54
file content (12 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
// +build !amd64 purego

package fp25519

func cmov(x, y *Elt, n uint)  { cmovGeneric(x, y, n) }
func cswap(x, y *Elt, n uint) { cswapGeneric(x, y, n) }
func add(z, x, y *Elt)        { addGeneric(z, x, y) }
func sub(z, x, y *Elt)        { subGeneric(z, x, y) }
func addsub(x, y *Elt)        { addsubGeneric(x, y) }
func mul(z, x, y *Elt)        { mulGeneric(z, x, y) }
func sqr(z, x *Elt)           { sqrGeneric(z, x) }
func modp(z *Elt)             { modpGeneric(z) }