fix: windows compile failure

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ 2020-07-07 20:37:04 +08:00
parent b060975fb7
commit 22eccce30d
2 changed files with 7 additions and 10 deletions

View File

@ -175,3 +175,9 @@ func paddingZero(s []byte, l int) []byte {
return s
}
}
func PKCS5UnPadding(src []byte) []byte {
length := len(src)
unpadding := int(src[length-1])
return src[:(length - unpadding)]
}

View File

@ -110,14 +110,5 @@ func aes128CBCDecrypt(encryptPass []byte) (string, error) {
return string(dst), nil
}
func PKCS5UnPadding(src []byte) []byte {
length := len(src)
unpadding := int(src[length-1])
return src[:(length - unpadding)]
}
func PKCS7UnPadding(origData []byte)[]byte{
length := len(origData)
unpadding := int(origData[length-1])
return origData[:length-unpadding]
}