mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
17 lines
350 B
Go
17 lines
350 B
Go
//go:build linux
|
|
|
|
package crypto
|
|
|
|
var iv = []byte{32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32}
|
|
|
|
func DecryptPass(key, encryptPass []byte) ([]byte, error) {
|
|
if len(encryptPass) < 3 {
|
|
return nil, errPasswordIsEmpty
|
|
}
|
|
return aes128CBCDecrypt(key, iv, encryptPass[3:])
|
|
}
|
|
|
|
func DPAPI(_ []byte) ([]byte, error) {
|
|
return nil, nil
|
|
}
|