1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-24 03:08:36 +00:00

backport: update golang.org/x/crypto vendor to use acme v2 (#9056) (#9085)

This commit is contained in:
techknowlogick
2019-11-20 02:12:47 -05:00
committed by GitHub
parent 261b19ced7
commit 38ce87a61a
52 changed files with 3430 additions and 2943 deletions

View File

@@ -0,0 +1,11 @@
// 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.
// +build !amd64 gccgo appengine purego
package curve25519
func scalarMult(out, in, base *[32]byte) {
scalarMultGeneric(out, in, base)
}