Home
last modified time | relevance | path

Searched refs:signature_file (Results 1 – 2 of 2) sorted by relevance

/build/scripts/util/
Dzip_and_md5.py45 def _write_signature_file(signature_file, hash_value): argument
46 if os.path.exists(signature_file):
47 os.remove(signature_file)
48 file_utils.write_file(signature_file, hash_value)
51 def _update_signature(signature_file, new_hash_value): argument
52 if os.path.exists(signature_file):
53 data = file_utils.read_file(signature_file)
56 "read signatrue file '{}' failed.".format(signature_file))
60 "signatrue file '{}' content error.".format(signature_file))
63 _write_signature_file(signature_file, new_hash_value)
[all …]
/build/ohos/kits/
Dkits_check_remove.py38 signature_file = os.path.join(subsystem_sign_file_dir, module_name,
40 if os.path.exists(signature_file):