@@ -4,13 +4,15 @@ icon: material/new-box
44
55!!! quote "Changes in sing-box 1.13.0"
66
7- :material-plus: [kernel_tx](#kernel_tx)
8- :material-plus: [kernel_rx](#kernel_rx)
9- :material-plus: [curve_preferences](#curve_preferences)
10- :material-plus: [certificate_public_key_sha256](#certificate_public_key_sha256)
11- :material-plus: [client_authentication](#client_authentication)
12- :material-plus: [client_certificate](#client_certificate)
13- :material-plus: [client_certificate_path](#client_certificate_path)
7+ :material-plus: [kernel_tx](#kernel_tx)
8+ :material-plus: [kernel_rx](#kernel_rx)
9+ :material-plus: [curve_preferences](#curve_preferences)
10+ :material-plus: [certificate_public_key_sha256](#certificate_public_key_sha256)
11+ :material-plus: [client_certificate](#client_certificate)
12+ :material-plus: [client_certificate_path](#client_certificate_path)
13+ :material-plus: [client_key](#client_key)
14+ :material-plus: [client_key_path](#client_key_path)
15+ :material-plus: [client_authentication](#client_authentication)
1416 :material-plus: [client_certificate_public_key_sha256](#client_certificate_public_key_sha256)
1517
1618!!! quote "Changes in sing-box 1.12.0"
@@ -101,9 +103,14 @@ icon: material/new-box
101103 "min_version" : " " ,
102104 "max_version" : " " ,
103105 "cipher_suites" : [],
106+ "curve_preferences" : [],
104107 "certificate" : " " ,
105108 "certificate_path" : " " ,
106109 "certificate_public_key_sha256" : [],
110+ "client_certificate" : [],
111+ "client_certificate_path" : " " ,
112+ "client_key" : [],
113+ "client_key_path" : " " ,
107114 "fragment" : false ,
108115 "fragment_fallback_delay" : " " ,
109116 "record_fragment" : false ,
@@ -258,6 +265,38 @@ openssl x509 -in certificate.pem -pubkey -noout | openssl pkey -pubin -outform d
258265echo | openssl s_client -servername example.com -connect example.com:443 2> /dev/null | openssl x509 -pubkey -noout | openssl pkey -pubin -outform der | openssl dgst -sha256 -binary | openssl enc -base64
259266```
260267
268+ #### client_certificate
269+
270+ !!! question "Since sing-box 1.13.0"
271+
272+ ==Client only==
273+
274+ Client certificate chain line array, in PEM format.
275+
276+ #### client_certificate_path
277+
278+ !!! question "Since sing-box 1.13.0"
279+
280+ ==Client only==
281+
282+ The path to client certificate chain, in PEM format.
283+
284+ #### client_key
285+
286+ !!! question "Since sing-box 1.13.0"
287+
288+ ==Client only==
289+
290+ Client private key line array, in PEM format.
291+
292+ #### client_key_path
293+
294+ !!! question "Since sing-box 1.13.0"
295+
296+ ==Client only==
297+
298+ The path to client private key, in PEM format.
299+
261300#### key
262301
263302==Server only==
0 commit comments