Files
edwards25519/field/fe_amd64_noasm.go

21 lines
798 B
Go
Raw Normal View History

2026-03-06 21:58:16 +00:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Source: https://sources.truenas.cloud/code
// Import: sources.truenas.cloud/code/edwards25519/field
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2019 The Go Authors. All rights Reserved.
// Use of this source code is goverened by a BSD-style
// license that can be found in the LICENSE file.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//go:build !amd64 || purego
package field
func feMul(v, x, y *Element) { feMulGeneric(v, x, y) }
func feSquare(v, x *Element) { feSquareGeneric(v, x) }