File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
rustls-wolfcrypt-provider/src Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -115,15 +115,15 @@ impl rustls::crypto::KeyProvider for Provider {
115115}
116116
117117static ALL_CIPHER_SUITES : & [ rustls:: SupportedCipherSuite ] = & [
118- TLS13_CHACHA20_POLY1305_SHA256 ,
119- TLS13_AES_128_GCM_SHA256 ,
120118 TLS13_AES_256_GCM_SHA384 ,
121- TLS12_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ,
122- TLS12_ECDHE_RSA_WITH_AES_128_GCM_SHA256 ,
119+ TLS13_AES_128_GCM_SHA256 ,
120+ TLS13_CHACHA20_POLY1305_SHA256 ,
123121 TLS12_ECDHE_RSA_WITH_AES_256_GCM_SHA384 ,
124- TLS12_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 ,
125- TLS12_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 ,
122+ TLS12_ECDHE_RSA_WITH_AES_128_GCM_SHA256 ,
123+ TLS12_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 ,
126124 TLS12_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 ,
125+ TLS12_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 ,
126+ TLS12_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 ,
127127] ;
128128
129129static ALL_RSA_SCHEMES : & [ rustls:: SignatureScheme ] = & [
You can’t perform that action at this time.
0 commit comments