mirror of
https://github.com/henrydcase/nobs.git
synced 2024-11-23 07:38:56 +00:00
Henry Case
a152c09fd5
* makes common reusable * exports some more symbols from common * remove kem for a moment
46 lines
1.0 KiB
Go
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 p503
|
|
|
|
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 cswapP503(x, y *Fp, choice uint8)
|
|
|
|
// Compute z = x + y (mod p).
|
|
//go:noescape
|
|
func addP503(z, x, y *Fp)
|
|
|
|
// Compute z = x - y (mod p).
|
|
//go:noescape
|
|
func subP503(z, x, y *Fp)
|
|
|
|
// Compute z = x + y, without reducing mod p.
|
|
//go:noescape
|
|
func adlP503(z, x, y *FpX2)
|
|
|
|
// Compute z = x - y, without reducing mod p.
|
|
//go:noescape
|
|
func sulP503(z, x, y *FpX2)
|
|
|
|
// Reduce a field element in [0, 2*p) to one in [0,p).
|
|
//go:noescape
|
|
func modP503(x *Fp)
|
|
|
|
// Computes z = x * y.
|
|
//go:noescape
|
|
func mulP503(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 rdcP503(z *Fp, x *FpX2)
|