mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-22 02:06:18 +08:00
11 lines
259 B
Go
11 lines
259 B
Go
//go:build (amd64 && !purego) || (arm64 && !purego)
|
|
// +build amd64,!purego arm64,!purego
|
|
|
|
package cipher
|
|
|
|
//go:noescape
|
|
func mul2(tweak *[blockSize]byte, isGB bool)
|
|
|
|
//go:noescape
|
|
func doubleTweaks(tweak *[blockSize]byte, tweaks []byte, isGB bool)
|