| ... | @@ -209,9 +209,16 @@ pub fn init(stream: anytype, options: Options) InitError(@TypeOf(stream))!Client | ... | @@ -209,9 +209,16 @@ pub fn init(stream: anytype, options: Options) InitError(@TypeOf(stream))!Client |
| 209 | })) ++ tls.extension(.signature_algorithms, array(u16, tls.SignatureScheme, .{ | 209 | })) ++ tls.extension(.signature_algorithms, array(u16, tls.SignatureScheme, .{ |
| 210 | .ecdsa_secp256r1_sha256, | 210 | .ecdsa_secp256r1_sha256, |
| 211 | .ecdsa_secp384r1_sha384, | 211 | .ecdsa_secp384r1_sha384, |
| | 212 | .rsa_pkcs1_sha256, |
| | 213 | .rsa_pkcs1_sha384, |
| | 214 | .rsa_pkcs1_sha512, |
| 212 | .rsa_pss_rsae_sha256, | 215 | .rsa_pss_rsae_sha256, |
| 213 | .rsa_pss_rsae_sha384, | 216 | .rsa_pss_rsae_sha384, |
| 214 | .rsa_pss_rsae_sha512, | 217 | .rsa_pss_rsae_sha512, |
| | 218 | .rsa_pss_pss_sha256, |
| | 219 | .rsa_pss_pss_sha384, |
| | 220 | .rsa_pss_pss_sha512, |
| | 221 | .rsa_pkcs1_sha1, |
| 215 | .ed25519, | 222 | .ed25519, |
| 216 | })) ++ tls.extension(.supported_groups, array(u16, tls.NamedGroup, .{ | 223 | })) ++ tls.extension(.supported_groups, array(u16, tls.NamedGroup, .{ |
| 217 | .x25519_ml_kem768, | 224 | .x25519_ml_kem768, |