2022-01-21 11:24:10 +08:00
|
|
|
package sm4
|
|
|
|
|
|
|
|
import "crypto/cipher"
|
|
|
|
|
2023-02-10 17:19:50 +08:00
|
|
|
// ecbcEncAble is implemented by cipher.Blocks that can provide an optimized
|
|
|
|
// implementation of ECB encryption through the cipher.BlockMode interface.
|
|
|
|
// See crypto/ecb.go.
|
|
|
|
type ecbEncAble interface {
|
|
|
|
NewECBEncrypter() cipher.BlockMode
|
|
|
|
}
|
|
|
|
|
|
|
|
// ecbDecAble is implemented by cipher.Blocks that can provide an optimized
|
|
|
|
// implementation of ECB decryption through the cipher.BlockMode interface.
|
|
|
|
// See crypto/ecb.go.
|
|
|
|
type ecbDecAble interface {
|
|
|
|
NewECBDecrypter() cipher.BlockMode
|
|
|
|
}
|
|
|
|
|
2022-07-26 08:30:24 +08:00
|
|
|
// cbcEncAble is implemented by cipher.Blocks that can provide an optimized
|
|
|
|
// implementation of CBC encryption through the cipher.BlockMode interface.
|
|
|
|
// See crypto/cipher/cbc.go.
|
|
|
|
type cbcEncAble interface {
|
|
|
|
NewCBCEncrypter(iv []byte) cipher.BlockMode
|
|
|
|
}
|
|
|
|
|
2022-01-21 11:24:10 +08:00
|
|
|
// cbcDecAble is implemented by cipher.Blocks that can provide an optimized
|
|
|
|
// implementation of CBC decryption through the cipher.BlockMode interface.
|
|
|
|
// See crypto/cipher/cbc.go.
|
|
|
|
type cbcDecAble interface {
|
|
|
|
NewCBCDecrypter(iv []byte) cipher.BlockMode
|
|
|
|
}
|
|
|
|
|
|
|
|
// ctrAble is implemented by cipher.Blocks that can provide an optimized
|
|
|
|
// implementation of CTR through the cipher.Stream interface.
|
|
|
|
// See crypto/cipher/ctr.go.
|
|
|
|
type ctrAble interface {
|
|
|
|
NewCTR(iv []byte) cipher.Stream
|
|
|
|
}
|
|
|
|
|
|
|
|
// gcmAble is implemented by cipher.Blocks that can provide an optimized
|
|
|
|
// implementation of GCM through the AEAD interface.
|
|
|
|
// See crypto/cipher/gcm.go.
|
|
|
|
type gcmAble interface {
|
|
|
|
NewGCM(nonceSize, tagSize int) (cipher.AEAD, error)
|
|
|
|
}
|