Searched refs:key_path (Results 1 – 6 of 6) sorted by relevance
/build/make/tools/releasetools/ |
D | verity_utils.py | 180 key_path = prop_dict.get("avb_key_path") 190 key_path, 201 key_path, 364 key_path, algorithm, salt, signing_args): argument 371 self.key_path = key_path 495 if self.key_path and self.algorithm: 496 cmd.extend(["--key", self.key_path, "--algorithm", self.algorithm]) 701 key_path, algorithm, signing_args): argument 709 key_path,
|
D | sign_target_files_apks.py | 877 def ReplaceVerityPublicKey(output_zip, filename, key_path): argument 885 print("Replacing verity public key with %s" % (key_path,)) 886 common.ZipWrite(output_zip, key_path, arcname=filename) 889 def ReplaceVerityPrivateKey(misc_info, key_path): argument 896 print("Replacing verity private key with %s" % (key_path,)) 897 misc_info["verity_key"] = key_path 900 def ReplaceVerityKeyId(input_zip, output_zip, key_path): argument 922 p = common.Run(["openssl", "x509", "-in", key_path, "-text"],
|
D | sign_target_files_apks | 877 def ReplaceVerityPublicKey(output_zip, filename, key_path): argument 885 print("Replacing verity public key with %s" % (key_path,)) 886 common.ZipWrite(output_zip, key_path, arcname=filename) 889 def ReplaceVerityPrivateKey(misc_info, key_path): argument 896 print("Replacing verity private key with %s" % (key_path,)) 897 misc_info["verity_key"] = key_path 900 def ReplaceVerityKeyId(input_zip, output_zip, key_path): argument 922 p = common.Run(["openssl", "x509", "-in", key_path, "-text"],
|
D | common.py | 1036 key_path = OPTIONS.info_dict.get("avb_" + partition + "_key_path") 1037 if key_path and not os.path.exists(key_path) and OPTIONS.search_path: 1038 new_key_path = os.path.join(OPTIONS.search_path, key_path) 1040 key_path = new_key_path 1042 if key_path and algorithm: 1043 cmd.extend(["--key", key_path, "--algorithm", algorithm]) 1069 key_path = info_dict.get("avb_" + partition + "_key_path") 1070 if not key_path:
|
D | add_img_to_target_files.py | 363 key_path = OPTIONS.info_dict.get("avb_{}_key_path".format(partition_name)) 372 key_path, algorithm, extra_args)
|
D | add_img_to_target_files | 363 key_path = OPTIONS.info_dict.get("avb_{}_key_path".format(partition_name)) 372 key_path, algorithm, extra_args)
|