You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
16 lines
363 B
//go:build linux
|
|
|
|
package decrypter
|
|
|
|
func Chromium(key, encryptPass []byte) ([]byte, error) {
|
|
if len(encryptPass) < 3 {
|
|
return nil, errPasswordIsEmpty
|
|
}
|
|
|
|
chromeIV := []byte{32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32}
|
|
return aes128CBCDecrypt(key, chromeIV, encryptPass[3:])
|
|
}
|
|
|
|
func DPAPI(data []byte) ([]byte, error) {
|
|
return nil, nil
|
|
}
|
|
|