diff --git a/router/java/src/net/i2p/router/crypto/ratchet/RatchetSKM.java b/router/java/src/net/i2p/router/crypto/ratchet/RatchetSKM.java index ff6730ebd..ee40feeda 100644 --- a/router/java/src/net/i2p/router/crypto/ratchet/RatchetSKM.java +++ b/router/java/src/net/i2p/router/crypto/ratchet/RatchetSKM.java @@ -804,10 +804,13 @@ public class RatchetSKM extends SessionKeyManager implements SessionTagListener @Override public void renderStatusHTML(Writer out) throws IOException { StringBuilder buf = new StringBuilder(1024); + boolean isPQ = _type != EncType.ECIES_X25519; // inbound - buf.append("

Ratchet Inbound sessions

" + - ""); + buf.append("

"); + if (isPQ) + buf.append("PQ "); + buf.append("Ratchet Inbound sessions

"); Map> inboundSets = getRatchetTagSetsByPublicKey(); int total = 0; int totalSets = 0; @@ -853,8 +856,10 @@ public class RatchetSKM extends SessionKeyManager implements SessionTagListener .append("; sessions: ").append(inboundSets.size()) .append("\n" + "
" + - "

Ratchet Outbound sessions

" + - ""); + "

"); + if (isPQ) + buf.append("PQ "); + buf.append("Ratchet Outbound sessions

"); // outbound totalSets = 0;