Welcome to mirror list, hosted at ThFree Co, Russian Federation.

noaskpass.c « unix - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de646c55fc6fdb0fc84f7ba0107be45d5f777b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Dummy (lack-of-)implementation of a GUI password/passphrase prompt.
 */

#include "putty.h"

void random_add_noise(NoiseSourceId source, const void *noise, int length)
{
    /* We have no keypress_prng here, so no need to implement this */
}

const bool buildinfo_gtk_relevant = false;

char *gtk_askpass_main(const char *display, const char *wintitle,
                       const char *prompt, bool *success)
{
    *success = false;
    return dupstr("this Pageant was built without GTK");
}