edwards25519/fe_noasm.go
Filippo Valsorda d3569cbbb3 all: flatten the package and make FieldElement opaque
For the license changes, see gtank/ristretto255-private#28 and
gtank/ristretto255#32, that contribute all code in those repositories to
the Go project under the Google CLA.
2020-09-28 14:18:44 +02:00

12 lines
332 B
Go

// Copyright (c) 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !amd64 purego
package edwards25519
func feMul(v, x, y *FieldElement) { feMulGeneric(v, x, y) }
func feSquare(v, x *FieldElement) { feSquareGeneric(v, x) }