21 lines
798 B
Go
21 lines
798 B
Go
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
//
|
||
|
|
// 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) }
|