Skip to content

Commit

Permalink
Merge pull request #10 from jkacou/master
Browse files Browse the repository at this point in the history
Reduce default key size to 2048 from 4096
  • Loading branch information
romain-bellanger committed Dec 10, 2021
2 parents c8f257d + d76e2e1 commit d2ae9fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autossl/__version__.py
@@ -1,7 +1,7 @@
__title__ = 'autossl'
__description__ = 'SSL certificates monitoring, renewal and deployment.'
__url__ = 'https://autossl.readthedocs.io'
__version__ = '0.9.3'
__version__ = '0.9.4'
__author__ = 'Thibaud Castaing'
__author_email__ = 't-cas@users.noreply.github.com'
__license__ = 'MIT license'
Expand Down
4 changes: 2 additions & 2 deletions autossl/ssl.py
Expand Up @@ -228,7 +228,7 @@ def get_chain_of_trust(self):
class SslCertificateConfig(object):
def __init__(self, certificate_type, certificate_authority,
common_name=None, sans=None, organization=None, chain_of_trust=None,
exact_match=False, private_key_reuse=False, private_key_size=4096,
exact_match=False, private_key_reuse=False, private_key_size=2048,
renewal_delay=30, is_ca=False):
"""
Expand Down Expand Up @@ -383,7 +383,7 @@ def generate_csr(name,
email_address=None,
sans=None,
key_content=None,
key_size=4096,
key_size=2048,
output_path=None,
is_ca=False):
"""Generate a CSR for specified parameters
Expand Down

0 comments on commit d2ae9fc

Please sign in to comment.