File: fp511_noasm.go

package info (click to toggle)
golang-github-cloudflare-circl 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,064 kB
  • sloc: asm: 20,492; ansic: 1,292; makefile: 68
file content (9 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
//go:build !amd64 || purego
// +build !amd64 purego

package csidh

func mul512(r, m1 *fp, m2 uint64)            { mul512Generic(r, m1, m2) }
func mul576(r *[9]uint64, m1 *fp, m2 uint64) { mul576Generic(r, m1, m2) }
func cswap512(x, y *fp, choice uint8)        { cswap512Generic(x, y, choice) }
func mulRdc(r, x, y *fp)                     { mulRdcGeneric(r, x, y) }