From c27285e750856429a6829de0264051db68b7db0e Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 23 Oct 2017 14:32:10 +0200 Subject: [PATCH] actions: only show 40 bits of keyID by default It must be enough for everyone! It also copypastes better and is short enough not to provide a false feeling of security. --- src/actions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions.cpp b/src/actions.cpp index 56b7171..1cd439b 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -1243,7 +1243,7 @@ static void output_key (bool fp, { if (!fp) out (ident << '\t' << escape_output (alg) << '\t' - << '@' << keyid.substr (0, 22) << "...\t" + << '@' << keyid.substr (0, 10) << "...\t" << escape_output (name)); else { out (longid << " with algorithm " << escape_output (alg)