2019-11-21 16:19:22 +00:00
|
|
|
// 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.
|
|
|
|
|
2019-11-22 12:58:03 +00:00
|
|
|
// +build !amd64 gccgo appengine purego
|
2019-11-21 16:19:22 +00:00
|
|
|
|
2019-11-22 12:58:03 +00:00
|
|
|
package curve25519
|
2019-11-21 16:19:22 +00:00
|
|
|
|
2019-11-22 12:58:03 +00:00
|
|
|
func scalarMult(out, in, base *[32]byte) {
|
|
|
|
scalarMultGeneric(out, in, base)
|
|
|
|
}
|