fix(des):修复DES加密时出现的密文字节数组长度不足的情况。

This commit is contained in:
徐涛 2023-07-15 11:56:27 +08:00
parent 5e284f320d
commit 185f1f3195
2 changed files with 4 additions and 1 deletions

View File

@ -41,8 +41,8 @@ func Encrypt(data []byte, key []byte, padding encryption.PaddingMode, keyGenerat
}
iv := keyBytes[:]
cipherText := make([]byte, len(data))
plainText := encryption.Padding(data, block.BlockSize(), padding)
cipherText := make([]byte, len(plainText))
mode := cipher.NewCBCEncrypter(block, iv)
mode.CryptBlocks(cipherText, plainText)

View File

@ -37,6 +37,9 @@ func Unpadding(data []byte, padding ...PaddingMode) []byte {
case PKCS7Padding:
length := len(data)
unpadding := int(data[length-1])
if length-unpadding < 0 {
return make([]byte, 0)
}
return data[:(length - unpadding)]
case NoPadding:
return data