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.
17 lines
421 B
17 lines
421 B
package decrypter
|
|
|
|
func ChromePass(key, encryptPass []byte) ([]byte, error) {
|
|
if len(encryptPass) > 3 {
|
|
if len(key) == 0 {
|
|
return nil, errSecurityKeyIsEmpty
|
|
}
|
|
var chromeIV = []byte{32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32}
|
|
return aes128CBCDecrypt(key, chromeIV, encryptPass[3:])
|
|
} else {
|
|
return nil, errDecryptFailed
|
|
}
|
|
}
|
|
|
|
func DPApi(data []byte) ([]byte, error) {
|
|
return nil, nil
|
|
}
|
|
|