From 00881f67406628275c0e4c778848e0c4dff4a2ee Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Wed, 23 Jul 2025 02:23:38 +0000 Subject: [PATCH] README.md: Add "mldsa65Seed" and "mldsa65Verify" to example https://github.com/XTLS/Xray-core/pull/4915 --- README.en.md | 6 ++++-- README.md | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.en.md b/README.en.md index c1a11b8..38ca0aa 100644 --- a/README.en.md +++ b/README.en.md @@ -46,6 +46,7 @@ TODO List: TODO "", // If there is this item, the client shortId can be empty "0123456789abcdef" // 0 to f, the length is a multiple of 2, the maximum length is 16 ], + "mldsa65Seed": "", // Optional, execute ./xray mldsa65 to generate, for additional post-quantum signature to the certificate // These two limitations below are optional, for rate limiting fallback connections, bytesPerSec's default is 0, which means disabled // It's a detectable pattern, not recommended to be enabled, RANDOMIZE these parameters if you're a web-panel/one-click-script developer "limitFallbackUpload": { @@ -100,10 +101,11 @@ The next main goal of REALITY is "**pre-built mode**", that is, to collect and b "security": "reality", "realitySettings": { "show": false, // Optional, if true, output debugging information - "fingerprint": "chrome", // Required, use uTLS library to emulate client TLS fingerprint + "fingerprint": "chrome", // Optional, use uTLS library to emulate client TLS fingerprint, defaults to chrome "serverName": "", // One of the server serverNames - "publicKey": "", // The public key corresponding to the private key of the server + "password": "", // The public key generated from the server's private key, for the client it is the password "shortId": "", // One of the server shortIds + "mldsa65Verify": "", // Optional, the public key generated from the server's mldsa65Seed, for additional post-quantum verification to the certificate "spiderX": "" // The initial path and parameters of the crawler, recommended to be different for each client } } diff --git a/README.md b/README.md index 7feec2c..f044a16 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ TODO List: TODO "", // 若有此项,客户端 shortId 可为空 "0123456789abcdef" // 0 到 f,长度为 2 的倍数,长度上限为 16 ], + "mldsa65Seed": "", // 选填,执行 ./xray mldsa65 生成,对证书进行抗量子的额外签名 // 下列两个 limit 为选填,可对未通过验证的回落连接限速,bytesPerSec 默认为 0 即不启用 // 回落限速是一种特征,不建议启用,如果您是面板/一键脚本开发者,务必让这些参数随机化 "limitFallbackUpload": { @@ -100,10 +101,11 @@ REALITY 的下一个主要目标是“**预先构建模式**”,即提前采 "security": "reality", "realitySettings": { "show": false, // 选填,若为 true,输出调试信息 - "fingerprint": "chrome", // 必填,使用 uTLS 库模拟客户端 TLS 指纹 + "fingerprint": "chrome", // 选填,使用 uTLS 库模拟客户端 TLS 指纹,默认 chrome "serverName": "", // 服务端 serverNames 之一 - "publicKey": "", // 服务端私钥对应的公钥 + "password": "", // 服务端私钥生成的公钥,对客户端来说就是密码 "shortId": "", // 服务端 shortIds 之一 + "mldsa65Verify": "", // 选填,服务端 mldsa65Seed 生成的公钥,对证书进行抗量子的额外验证 "spiderX": "" // 爬虫初始路径与参数,建议每个客户端不同 } }