@@ -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