MCPcopy Create free account
hub / github.com/apache/httpd / issue_certs

Method issue_certs

test/pyhttpd/certs.py:157–159  ·  view source on GitHub ↗
(self, specs: List[CertificateSpec],
                    chain: List['Credentials'] = None)

Source from the content-addressed store, hash-verified

155 return self._store.get_credentials_for_name(name) if self._store else []
156
157 def issue_certs(self, specs: List[CertificateSpec],
158 chain: List['Credentials'] = None) -> List['Credentials']:
159 return [self.issue_cert(spec=spec, chain=chain) for spec in specs]
160
161 def issue_cert(self, spec: CertificateSpec, chain: List['Credentials'] = None) -> 'Credentials':
162 key_type = spec.key_type if spec.key_type else self.key_type

Callers 1

issue_certMethod · 0.45

Calls 1

issue_certMethod · 0.95

Tested by

no test coverage detected