src/protocols/silc/util.c

changeset 9183
8c32288c59a8
parent 9039
2fb80b14dd95
child 9272
41e74d91931f
equal deleted inserted replaced
9182:889b4794c3d5 9183:8c32288c59a8
284 if (ident->org) 284 if (ident->org)
285 g_string_append_printf(s, "%s: \t%s\n", _("Organization"), ident->org); 285 g_string_append_printf(s, "%s: \t%s\n", _("Organization"), ident->org);
286 if (ident->country) 286 if (ident->country)
287 g_string_append_printf(s, "%s: \t%s\n", _("Country"), ident->country); 287 g_string_append_printf(s, "%s: \t%s\n", _("Country"), ident->country);
288 g_string_append_printf(s, "%s: \t\t%s\n", _("Algorithm"), public_key->name); 288 g_string_append_printf(s, "%s: \t\t%s\n", _("Algorithm"), public_key->name);
289 g_string_append_printf(s, "%s: \t%d bits\n", _("Key Length"), (int)key_len); 289 g_string_append_printf(s, "%s: \t", _("Key Length"));
290 g_string_append_printf(s, "\n"); 290 g_string_append_printf(s, _("%d bits"), (int)key_len);
291 g_string_append_printf(s, "\n\n");
291 g_string_append_printf(s, "%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint); 292 g_string_append_printf(s, "%s:\n%s\n\n", _("Public Key Fingerprint"), fingerprint);
292 g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint); 293 g_string_append_printf(s, "%s:\n%s", _("Public Key Babbleprint"), babbleprint);
293 294
294 buf = g_string_free(s, FALSE); 295 buf = g_string_free(s, FALSE);
295 296

mercurial