blob: 061386f9835641d00265bcd6ef9395e43c7fdf84 [file] [log] [blame]
#!/usr/bin/env python3
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Single certificate chain for a serverAuth which does not contain the
issuer."""
import sys
sys.path += ['../..']
import gencerts
# Self-signed root certificate.
root = gencerts.create_self_signed_root_certificate('Root')
# Target certificate.
target = gencerts.create_end_entity_certificate('Target', root)
target.get_extensions().set_property('extendedKeyUsage', 'serverAuth')
chain = [target]
gencerts.write_chain(__doc__, chain, 'chain.pem')