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