From dae282973eec1adfadaecc8aba0755d6214d6bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Thu, 9 Feb 2017 16:59:01 +0000 Subject: [PATCH] Passphraseless PKCS#12 doesn't play well with Firefox --- certidude/authority.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certidude/authority.py b/certidude/authority.py index 2ae8001..af029f3 100644 --- a/certidude/authority.py +++ b/certidude/authority.py @@ -272,7 +272,7 @@ def generate_pkcs12_bundle(common_name, key_size=4096, owner=None): ) p12.set_certificate( cert._obj ) p12.set_ca_certificates([certificate._obj]) - return p12.export(), cert + return p12.export("1234"), cert @publish_certificate