From 487ec74e0b867fdab53aa0a3b080c886e38ec06e Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Fri, 25 Jul 2025 01:22:01 +0200 Subject: add mldsa65 --- web/html/modals/inbound_modal.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'web/html/modals/inbound_modal.html') diff --git a/web/html/modals/inbound_modal.html b/web/html/modals/inbound_modal.html index 8be213a8..f11df2e2 100644 --- a/web/html/modals/inbound_modal.html +++ b/web/html/modals/inbound_modal.html @@ -141,7 +141,17 @@ } inModal.inbound.stream.reality.privateKey = msg.obj.privateKey; inModal.inbound.stream.reality.settings.publicKey = msg.obj.publicKey; - } + }, + async getNewmldsa65() { + inModal.loading(true); + const msg = await HttpUtil.post('/server/getNewmldsa65'); + inModal.loading(false); + if (!msg.success) { + return; + } + inModal.inbound.stream.reality.mldsa65Seed = msg.obj.seed; + inModal.inbound.stream.reality.settings.mldsa65Verify = msg.obj.verify; + }, }, }); -- cgit v1.2.3