0
0
mirror of https://github.com/XTLS/REALITY.git synced 2025-08-22 14:38:35 +00:00

README.md: Add "mldsa65Seed" and "mldsa65Verify" to example

https://github.com/XTLS/Xray-core/pull/4915
This commit is contained in:
RPRX 2025-07-23 02:23:38 +00:00 committed by GitHub
parent 4eaf7927f3
commit 00881f6740
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 4 deletions

View File

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

View File

@ -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": "" // 爬虫初始路径与参数,建议每个客户端不同
}
}