We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de87b10 commit 4483d79Copy full SHA for 4483d79
pymdoccbor/mso/issuer.py
@@ -241,6 +241,10 @@ def sign(
241
if not self.cert_info:
242
raise ValueError("cert_info must be provided if cert_path is not set")
243
244
+ logger.warning(
245
+ "A self-signed certificate will be created using the provided cert_info but this is not recommended for production use."
246
+ )
247
+
248
_cert = selfsigned_x509cert(self.cert_info, self.private_key)
249
250
if self.hsm:
0 commit comments