def load_verify_cert_by_file()

in functions/source/api/api.py [0:0]


def load_verify_cert_by_file(filename):
    """Load the verification certificate that will be used to verify manifest
    entries."""
    with open(filename, "rb") as buf:
        verification_cert = buf.read()
    return verification_cert