(
keyName?: string,
prompt?: string,
cancelToken?: vscode.CancellationToken
)
| 37 | } |
| 38 | |
| 39 | export function showPassphraseInputBox( |
| 40 | keyName?: string, |
| 41 | prompt?: string, |
| 42 | cancelToken?: vscode.CancellationToken |
| 43 | ): Promise<string | undefined> { |
| 44 | const keyStr: string = keyName ? `"${keyName}"` : ''; |
| 45 | const msg: string = localize('ssh.passphrase.input.box', 'Enter passphrase for ssh key {0}', keyStr); |
| 46 | return showInputBox(msg, prompt, cancelToken); |
| 47 | } |
| 48 | |
| 49 | export function showPasswordInputBox( |
| 50 | user: string | undefined, |
nothing calls this directly
no test coverage detected