mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-26 04:06:18 +08:00
9 lines
169 B
Go
9 lines
169 B
Go
//go:build (!amd64 && !arm64) || purego
|
|
// +build !amd64,!arm64 purego
|
|
|
|
package bn256
|
|
|
|
func gfP12MovCond(res, a, b *gfP12, cond int) {
|
|
res.Select(a, b, cond)
|
|
}
|