mirror of
https://github.com/moonD4rk/HackBrowserData
synced 2025-01-31 19:01:31 +00:00
fix: windows compile failure
This commit is contained in:
parent
b060975fb7
commit
22eccce30d
@ -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)]
|
||||
}
|
@ -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]
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user