Home | History | Annotate | Download | only in releasetools

Lines Matching refs:keyid

80       with keyid of the cert pointed by <path_to_X509_PEM_cert_file>.
315 # Skip verity keyid (for system_root_image use) if we will replace it.
331 # Replace the keyid string in misc_info dict.
345 # Replace the keyid string in BOOT/cmdline.
551 # extract keyid using openssl command
555 keyid, stderr = p.communicate()
556 keyid = re.search(
557 r'keyid:([0-9a-fA-F:]*)', keyid).group(1).replace(':', '').lower()
558 print "Replacing verity keyid with %s error=%s" % (keyid, stderr)
559 out_cmdline.append("veritykeyid=id:%s" % (keyid,))