1
0
mirror of https://github.com/henrydcase/nobs.git synced 2024-11-22 23:28:57 +00:00
nobs/dh/sidh/internal/p751/arith_decl.go
Henry Case a152c09fd5
sike: move common (#33)
* makes common reusable
* exports some more symbols from common
* remove kem for a moment
2020-05-16 20:14:48 +00:00

46 lines
1.0 KiB
Go

// Code generated by go generate; DO NOT EDIT.
// This file was generated by robots.
// +build amd64,!noasm arm64,!noasm
package p751
import (
. "github.com/henrydcase/nobs/dh/sidh/common"
)
// If choice = 0, leave x,y unchanged. If choice = 1, set x,y = y,x.
// If choice is neither 0 nor 1 then behaviour is undefined.
// This function executes in constant time.
//go:noescape
func cswapP751(x, y *Fp, choice uint8)
// Compute z = x + y (mod p).
//go:noescape
func addP751(z, x, y *Fp)
// Compute z = x - y (mod p).
//go:noescape
func subP751(z, x, y *Fp)
// Compute z = x + y, without reducing mod p.
//go:noescape
func adlP751(z, x, y *FpX2)
// Compute z = x - y, without reducing mod p.
//go:noescape
func sulP751(z, x, y *FpX2)
// Reduce a field element in [0, 2*p) to one in [0,p).
//go:noescape
func modP751(x *Fp)
// Computes z = x * y.
//go:noescape
func mulP751(z *FpX2, x, y *Fp)
// Computes the Montgomery reduction z = x R^{-1} (mod 2*p). On return value
// of x may be changed. z=x not allowed.
//go:noescape
func rdcP751(z *Fp, x *FpX2)