18 lines
415 B
Go
18 lines
415 B
Go
package decrypter
|
|
|
|
func Chromium(key, encryptPass []byte) ([]byte, error) {
|
|
chromeIV := []byte{32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32}
|
|
if len(encryptPass) > 3 {
|
|
if len(key) == 0 {
|
|
return nil, errSecurityKeyIsEmpty
|
|
}
|
|
return aes128CBCDecrypt(key, chromeIV, encryptPass[3:])
|
|
} else {
|
|
return nil, errDecryptFailed
|
|
}
|
|
}
|
|
|
|
func DPApi(data []byte) ([]byte, error) {
|
|
return nil, nil
|
|
}
|