MCPcopy Create free account
hub / github.com/Dstack-TEE/dstack / self_signed

Method self_signed

ra-tls/src/cert.rs:422–426  ·  view source on GitHub ↗

Create a self-signed certificate.

(self)

Source from the content-addressed store, hash-verified

420impl CertRequest<'_, KeyPair> {
421 /// Create a self-signed certificate.
422 pub fn self_signed(self) -> Result<Certificate> {
423 let key = self.key;
424 let cert = self.into_cert_params()?.self_signed(key)?;
425 Ok(cert)
426 }
427}
428
429impl<Key: PublicKeyData> CertRequest<'_, Key> {

Callers 6

from_keysMethod · 0.80
cmd_gen_ca_certFunction · 0.80
make_app_keysFunction · 0.80
newMethod · 0.80
make_test_cert_dataFunction · 0.80
test_cert_store_wildcardFunction · 0.80

Calls 1

into_cert_paramsMethod · 0.80

Tested by 1

test_cert_store_wildcardFunction · 0.64