1
0
mirror of https://github.com/biergaizi/codecrypt synced 2024-06-16 03:48:19 +00:00

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.
This commit is contained in:
Mirek Kratochvil 2017-10-23 14:32:10 +02:00
parent 5dceb7c07d
commit c27285e750

@ -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)