Skip to content

Commit 99eedf3

Browse files
authored
Example should default to RSA 2048 not ECC
1 parent 290e0f4 commit 99eedf3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/get_cert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def main():
6969
#]
7070

7171
# configure key type, RSA example
72-
# request.key_type = KeyType(KeyType.RSA, 4096)
72+
request.key_type = KeyType(KeyType.RSA, 2048)
7373
# or set it to ECDSA
74-
request.key_type = KeyType(KeyType.ECDSA, "p521")
74+
# request.key_type = KeyType(KeyType.ECDSA, "p521")
7575
# Update certificate request from zone
7676
zone_config = conn.read_zone_conf(zone)
7777
request.update_from_zone_config(zone_config)

0 commit comments

Comments
 (0)