Skip to content

Commit

Permalink
Fix typo in Root CA subject
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed May 15, 2024
1 parent 2c14fb8 commit 1f30af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tls_gen/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def generate_root_ca(opts):
"-keyout", p.root_ca_key_path(),
"-out", p.root_ca_certificate_path(),
"-outform", "PEM",
"-subj", "/CN=TLSGenSelfSignedtRootCA {}/L=$$$$/".format(iso_date)]
"-subj", "/CN=TLSGenSelfSignedRootCA {}/L=$$$$/".format(iso_date)]
if len(opts.password) > 0:
args.append("-passout")
args.append("pass:{}".format(opts.password))
Expand Down

0 comments on commit 1f30af2

Please sign in to comment.