summaryrefslogtreecommitdiff
path: root/src/crypto/internal/bigmod/nat_noasm.go
blob: 870b44519d9b67fd377c1d3a7868bf8ec7c0ead4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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

package bigmod

func montgomeryLoop(d, a, b, m []uint, m0inv uint) uint {
	return montgomeryLoopGeneric(d, a, b, m, m0inv)
}