1
0
mirror of https://github.com/henrydcase/nobs.git synced 2024-11-22 23:28:57 +00:00
nobs/dh/csidh/arith_decl.go

28 lines
410 B
Go
Raw Normal View History

2018-10-19 10:13:43 +01:00
package csidh
// u512 specific functions
//go:noescape
func mul512(a, b *Fp, c uint64)
//go:noescape
func add512(x, y, z *Fp) uint64
//go:noescape
func sub512(x, y, z *Fp) uint64
//go:noescape
func cswap512(x, y *Fp, choice uint8)
//go:noescape
func crdc512(x *Fp)
//go:noescape
func csubrdc512(x *Fp, choice uint64)
//go:noescape
func mul(res, x, y *Fp)
//go:noescape
func checkBigger(x, y *Fp) bool