mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-25 03:36:18 +08:00
51 lines
979 B
Go
51 lines
979 B
Go
//go:build (amd64 && !purego) || (arm64 && !purego)
|
|
// +build amd64,!purego arm64,!purego
|
|
|
|
package sm4
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/cipher"
|
|
"testing"
|
|
)
|
|
|
|
func TestWithoutGFMUL(t *testing.T) {
|
|
key := make([]byte, 16)
|
|
src := make([]byte, 16)
|
|
var dst []byte
|
|
var nonce [12]byte
|
|
var c cipher.Block
|
|
var err error
|
|
|
|
if supportSM4 {
|
|
c, err = newCipherNI(key)
|
|
} else if !supportsAES {
|
|
c, err = newCipherGeneric(key)
|
|
} else {
|
|
blocks := 4
|
|
if useAVX2 {
|
|
blocks = 8
|
|
}
|
|
c1 := &sm4CipherAsm{sm4Cipher{make([]uint32, rounds), make([]uint32, rounds)}, blocks, blocks * BlockSize}
|
|
expandKeyAsm(&key[0], &ck[0], &c1.enc[0], &c1.dec[0], INST_AES)
|
|
c = c1
|
|
}
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var sm4gcm cipher.AEAD
|
|
sm4gcm, err = cipher.NewGCM(c)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
dst = sm4gcm.Seal(nil, nonce[:], src, nil)
|
|
src, err = sm4gcm.Open(nil, nonce[:], dst, nil)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !bytes.Equal(key, src) {
|
|
t.Errorf("bad encryption")
|
|
}
|
|
}
|