MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / showPassphraseInputBox

Function showPassphraseInputBox

Extension/src/SSH/sshCommandRunner.ts:39–47  ·  view source on GitHub ↗
(
    keyName?: string,
    prompt?: string,
    cancelToken?: vscode.CancellationToken
)

Source from the content-addressed store, hash-verified

37}
38
39export 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
49export function showPasswordInputBox(
50 user: string | undefined,

Callers

nothing calls this directly

Calls 1

showInputBoxFunction · 0.85

Tested by

no test coverage detected