gmsm/sm4/sm4ni_xts.go

68 lines
1.5 KiB
Go

//go:build arm64 && !purego
package sm4
import (
"crypto/cipher"
)
// Assert that sm4CipherAsm implements the xtsEncAble and xtsDecAble interfaces.
var _ xtsEncAble = (*sm4CipherNI)(nil)
var _ xtsDecAble = (*sm4CipherNI)(nil)
type xtsNI struct {
b *sm4CipherNI
tweak [BlockSize]byte
isGB bool // if true, follows GB/T 17964-2021
enc int
}
func (b *sm4CipherNI) NewXTSEncrypter(encryptedTweak *[BlockSize]byte, isGB bool) cipher.BlockMode {
var c xtsNI
c.b = b
c.enc = xtsEncrypt
c.isGB = isGB
copy(c.tweak[:], encryptedTweak[:])
return &c
}
func (b *sm4CipherNI) NewXTSDecrypter(encryptedTweak *[BlockSize]byte, isGB bool) cipher.BlockMode {
var c xtsNI
c.b = b
c.enc = xtsDecrypt
c.isGB = isGB
copy(c.tweak[:], encryptedTweak[:])
return &c
}
func (x *xtsNI) BlockSize() int { return BlockSize }
//go:noescape
func encryptSm4NiXts(xk *uint32, tweak *[BlockSize]byte, dst, src []byte)
//go:noescape
func encryptSm4NiXtsGB(xk *uint32, tweak *[BlockSize]byte, dst, src []byte)
//go:noescape
func decryptSm4NiXts(xk *uint32, tweak *[BlockSize]byte, dst, src []byte)
//go:noescape
func decryptSm4NiXtsGB(xk *uint32, tweak *[BlockSize]byte, dst, src []byte)
func (x *xtsNI) CryptBlocks(dst, src []byte) {
validateXtsInput(dst, src)
if x.enc == xtsEncrypt {
if x.isGB {
encryptSm4NiXtsGB(&x.b.enc[0], &x.tweak, dst, src)
} else {
encryptSm4NiXts(&x.b.enc[0], &x.tweak, dst, src)
}
} else {
if x.isGB {
decryptSm4NiXtsGB(&x.b.dec[0], &x.tweak, dst, src)
} else {
decryptSm4NiXts(&x.b.dec[0], &x.tweak, dst, src)
}
}
}