1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| package sm4 import ( "bytes" "encoding/hex" "github.com/tjfoc/gmsm/sm4" ) func SM4EcbEncrypt(key, plaintext []byte) (string, error) { block, err := sm4.NewCipher(key) if err != nil { return "", err } plaintext = PKCS5Padding(plaintext, block.BlockSize()) ciphertext := make([]byte, len(plaintext)) for start := 0; start < len(plaintext); start += block.BlockSize() { block.Encrypt(ciphertext[start:start+block.BlockSize()], plaintext[start:start+block.BlockSize()]) } return hex.EncodeToString(ciphertext), nil } func SM4EcbDecrypt(key []byte, data string) ([]byte, error) { plaintext, _ := hex.DecodeString(data) block, err := sm4.NewCipher(key) if err != nil { return nil, err } ciphertext := make([]byte, len(plaintext)) for start := 0; start < len(plaintext); start += block.BlockSize() { block.Decrypt(ciphertext[start:start+block.BlockSize()], plaintext[start:start+block.BlockSize()]) } ciphertext = PKCS5Unpadding(ciphertext) return ciphertext, nil } func PKCS5Padding(ciphertext []byte, blockSize int) []byte { padding := blockSize - len(ciphertext)%blockSize padtext := bytes.Repeat([]byte{byte(padding)}, padding) return append(ciphertext, padtext...) } func PKCS5Unpadding(origData []byte) []byte { length := len(origData) unpadding := int(origData[length-1]) return origData[:(length - unpadding)] }
|