Router: Prep for router encryption types (Proposal 156 WIP)

This commit is contained in:
zzz
2020-09-02 13:09:38 +00:00
parent d13a7d2872
commit bb761aea96
5 changed files with 47 additions and 8 deletions

View File

@ -934,7 +934,9 @@ class NetDbRenderer {
}
if (full) {
buf.append("</td></tr><tr><td><b>").append(_t("Signing Key")).append(":</b></td><td colspan=\"2\">")
.append(info.getIdentity().getSigningPublicKey().getType().toString());
.append(info.getIdentity().getSigningPublicKey().getType());
buf.append("</td></tr><tr><td><b>").append(_t("Encryption Key")).append(":</b></td><td colspan=\"2\">")
.append(info.getIdentity().getPublicKey().getType());
}
buf.append("</td></tr>\n<tr>")
.append("<td><b>").append(_t("Addresses")).append(":</b></td><td colspan=\"2\"");