From c4c33dccc11f5494a93c2013810eaf4217353f51 Mon Sep 17 00:00:00 2001 From: althafvly Date: Wed, 2 Oct 2024 13:08:41 +0530 Subject: [PATCH] make: Use aosp test key for trichrome --- tools/chromium_trichrome_patcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/chromium_trichrome_patcher.py b/tools/chromium_trichrome_patcher.py index bda96b3fa6..5c8964a26a 100755 --- a/tools/chromium_trichrome_patcher.py +++ b/tools/chromium_trichrome_patcher.py @@ -13,7 +13,7 @@ def ExtractFingerprint(cert): return proc.stdout.decode('utf-8').split('=')[1].replace(':', '') def patch_trichrome(infilename, sign_key): - orig_certdigest = "32a2fc74d731105859e5a85df16d95f102d85b22099b8064c5d8915c61dad1e0" + orig_certdigest = "c8a2e9bccf597c2fb6dc66bee293fc13f2fc47ec77bc6b2b0d52c11f51192ab8" new_certdigest = ExtractFingerprint(sign_key).lower().rstrip() with zipfile.ZipFile(infilename, 'r') as zin, zipfile.ZipFile(infilename + ".patched", 'w') as zout: -- GitLab