Open YuriSizuku opened 3 years ago
好像现在还是不支持
Can you please help me dealing with lenovo slbrowser ? ` if (bufferString.StartsWith("lnv20")) { byte[] iv = new byte[12]; Array.Copy(buffer, 5, iv, 0, iv.Length);
byte[] cipherText = new byte[buffer.Length - 17];
Array.Copy(buffer, 17, cipherText, 0, cipherText.Length);
byte[] tag = new byte[16];
Array.Copy(cipherText, cipherText.Length - tag.Length, tag, 0, tag.Length);
byte[] data = new byte[cipherText.Length - tag.Length];
Array.Copy(cipherText, 0, data, 0, data.Length);
decryptedData = new AesGcm().Decrypt(MasterKey, iv, null, data, tag);
}`
I think this browser has the similar structure with chrome browser. I try to use 256bits aes-gcm with nonce like chrome (see python code below) , but it doesn't work.
The encrypted_value is something start with
lnv20
, here's the sample of this browser encrypted value:Would you please help me dealing with slbrowser ?