Skip to content

Commit 0f6d892

Browse files
committed
README patch
1 parent 42d4222 commit 0f6d892

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

assets/readme.gif

314 KB
Loading

assets/readme.tape

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Output readme.gif
22

3-
Require pwsh
3+
Require powershell
44
Require sct
55

6-
Set Shell pwsh
6+
Set Shell powershell
77
Set Width 1500
88
Set Height 750
99
Set Padding 20

step_cli_tools/operations.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def _edit_san_entries(cri_obj: CertificateRequestInfo):
496496
if choice == "add":
497497
console.print()
498498
new_san = qy.text(
499-
message="Enter SAN entry (leave blank to cancel)",
499+
message="Enter SAN entry (blank to cancel)",
500500
validate=CertificateSubjectNameValidator(accept_blank=True),
501501
style=DEFAULT_QY_STYLE,
502502
).ask()
@@ -518,7 +518,7 @@ def _edit_san_entries(cri_obj: CertificateRequestInfo):
518518
current = cri_obj.san_entries[choice]
519519
console.print()
520520
edited = qy.text(
521-
message="Edit SAN entry (leave blank to delete)",
521+
message="Edit SAN entry (blank to delete)",
522522
default=current,
523523
validate=CertificateSubjectNameValidator(accept_blank=True),
524524
style=DEFAULT_QY_STYLE,
@@ -688,7 +688,7 @@ def _review_and_edit(cri_obj: CertificateRequestInfo) -> bool:
688688
elif answer == "valid_since":
689689
console.print()
690690
value = qy.text(
691-
message="Enter validity start date/time (leave blank for CA default)",
691+
message="Enter validity start date/time (blank for CA default)",
692692
default=(
693693
cri_obj.valid_since.strftime("%Y-%m-%d %H:%M:%S")
694694
if cri_obj.valid_since
@@ -716,7 +716,7 @@ def _review_and_edit(cri_obj: CertificateRequestInfo) -> bool:
716716
elif answer == "valid_until":
717717
console.print()
718718
value = qy.text(
719-
message="Enter validity end date/time (leave blank for CA default)",
719+
message="Enter validity end date/time (blank for CA default)",
720720
default=(
721721
cri_obj.valid_until.strftime("%Y-%m-%d %H:%M:%S")
722722
if cri_obj.valid_until
@@ -740,19 +740,19 @@ def _review_and_edit(cri_obj: CertificateRequestInfo) -> bool:
740740
if not proceed:
741741
return
742742

743-
# After finalizing options, ask for optional key password depending on output format
743+
# After finalizing options, ask for optional private key password depending on output format
744744
key_password = None
745745
if cri.is_output_format_pem():
746746
key_password = _prompt_for_password(
747-
message="Enter key password (leave blank for no password)",
748-
confirm_message="Confirm key password",
747+
message="Enter private key password (blank for no password)",
748+
confirm_message="Confirm private key password",
749749
)
750750

751751
# Optional PFX Encryption
752752
pfx_password = None
753753
if cri.is_output_format_pfx():
754754
pfx_password = _prompt_for_password(
755-
message="Enter PFX password (leave blank for no password)",
755+
message="Enter PFX password (blank for no password)",
756756
confirm_message="Confirm PFX password",
757757
)
758758

0 commit comments

Comments
 (0)