Lines Matching refs:cert
561 and return a {package: cert} dict."""
569 name, cert, privkey = m.groups()
572 if cert in SPECIAL_CERT_STRINGS and not privkey:
573 certmap[name] = cert
574 elif (cert.endswith(OPTIONS.public_key_suffix) and
576 cert[:-public_key_suffix_len] == privkey[:-private_key_suffix_len]):
577 certmap[name] = cert[:-public_key_suffix_len]
1111 cert = []
1117 cert.append(line)
1120 cert = "".join(cert).decode('base64')
1121 return cert