Represents the passphrase for the certificate's key.
| 146 | |
| 147 | |
| 148 | class SSLCredentials(PromptMixin): |
| 149 | """Represents the passphrase for the certificate's key.""" |
| 150 | |
| 151 | def __init__(self, value: Optional[str]) -> None: |
| 152 | self.value = value |
| 153 | |
| 154 | def prompt_password(self, key_file: str) -> None: |
| 155 | self.value = self._prompt_password(f'passphrase for {key_file}') |
| 156 | |
| 157 | |
| 158 | class AuthCredentials(KeyValueArg, PromptMixin): |