Lines Matching refs:cert
756 and return a {package: cert} dict."""
765 name, cert, privkey = m.groups()
768 if cert in SPECIAL_CERT_STRINGS and not privkey:
769 certmap[name] = cert
770 elif (cert.endswith(OPTIONS.public_key_suffix) and
772 cert[:-public_key_suffix_len] == privkey[:-private_key_suffix_len]):
773 certmap[name] = cert[:-public_key_suffix_len]
1574 cert = []
1580 cert.append(line)
1583 cert = "".join(cert).decode('base64')
1584 return cert