mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
28156f4a2e
full diff: c1f2f97bff...0c34fe9e7d
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
323 B
Go
12 lines
323 B
Go
// Copyright 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.
|
|
|
|
//go:build !amd64 || !gc || purego
|
|
// +build !amd64 !gc purego
|
|
|
|
package curve25519
|
|
|
|
func scalarMult(out, in, base *[32]byte) {
|
|
scalarMultGeneric(out, in, base)
|
|
}
|