mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
fix: windows compile failure
This commit is contained in:
@@ -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)]
|
||||
}
|
||||
+1
-10
@@ -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]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user