docs: update prefer chacha20 option docs
This commit is contained in:
parent
afde990c6b
commit
590cef9b1f
|
|
@ -287,7 +287,7 @@ impl ConnectConfiguration {
|
||||||
unsafe { ffi::SSL_set_aes_hw_override(self.as_ptr(), enable as _) }
|
unsafe { ffi::SSL_set_aes_hw_override(self.as_ptr(), enable as _) }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets whether the aes chacha20 preference should be enabled.
|
/// Sets whether the ChaCha20 preference should be enabled.
|
||||||
///
|
///
|
||||||
/// Controls the priority of TLS 1.3 cipher suites. When set to `true`, the client prefers:
|
/// Controls the priority of TLS 1.3 cipher suites. When set to `true`, the client prefers:
|
||||||
/// AES_128_GCM, CHACHA20_POLY1305, then AES_256_GCM. Useful in environments with specific
|
/// AES_128_GCM, CHACHA20_POLY1305, then AES_256_GCM. Useful in environments with specific
|
||||||
|
|
|
||||||
|
|
@ -1910,7 +1910,7 @@ impl SslContextBuilder {
|
||||||
unsafe { ffi::SSL_CTX_set_aes_hw_override(self.as_ptr(), enable as _) }
|
unsafe { ffi::SSL_CTX_set_aes_hw_override(self.as_ptr(), enable as _) }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets whether the AES-ChaCha20 preference should be enabled.
|
/// Sets whether the ChaCha20 preference should be enabled.
|
||||||
///
|
///
|
||||||
/// Controls the priority of TLS 1.3 cipher suites. When set to `true`, the client prefers:
|
/// Controls the priority of TLS 1.3 cipher suites. When set to `true`, the client prefers:
|
||||||
/// AES_128_GCM, CHACHA20_POLY1305, then AES_256_GCM. Useful in environments with specific
|
/// AES_128_GCM, CHACHA20_POLY1305, then AES_256_GCM. Useful in environments with specific
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue