mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-22 02:06:18 +08:00
10 lines
220 B
Go
10 lines
220 B
Go
//go: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)
|