mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-26 04:06:18 +08:00
13 lines
361 B
Go
13 lines
361 B
Go
// Copyright 2022 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 bigmod
|
|
|
|
func montgomeryLoop(d, a, b, m []uint, m0inv uint) uint {
|
|
return montgomeryLoopGeneric(d, a, b, m, m0inv)
|
|
}
|