X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=windows%2Fwincons.c;h=0b60e1849712a879477490f8803350a65517408a;hb=5471539a6738484b48fb938c88dce547a3e4b299;hp=a470e74457e997ecd30100e1d003fd0c117bebc5;hpb=a5fc95b715256a7db4492ccf6872788613f105c4;p=PuTTY.git diff --git a/windows/wincons.c b/windows/wincons.c index a470e744..0b60e184 100644 --- a/windows/wincons.c +++ b/windows/wincons.c @@ -281,9 +281,11 @@ void pgp_fingerprints(void) "one. See the manual for more information.\n" "(Note: these fingerprints have nothing to do with SSH!)\n" "\n" - "PuTTY Master Key (RSA), 1024-bit:\n" + "PuTTY Master Key as of 2015 (RSA, 4096-bit):\n" + " " PGP_MASTER_KEY_FP "\n\n" + "Original PuTTY Master Key (RSA, 1024-bit):\n" " " PGP_RSA_MASTER_KEY_FP "\n" - "PuTTY Master Key (DSA), 1024-bit:\n" + "Original PuTTY Master Key (DSA, 1024-bit):\n" " " PGP_DSA_MASTER_KEY_FP "\n", stdout); } @@ -304,7 +306,8 @@ static void console_data_untrusted(HANDLE hout, const char *data, int len) WriteFile(hout, data, len, &dummy, NULL); } -int console_get_userpass_input(prompts_t *p, unsigned char *in, int inlen) +int console_get_userpass_input(prompts_t *p, + const unsigned char *in, int inlen) { HANDLE hin, hout; size_t curr_prompt;