File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -1895,10 +1895,6 @@ impl SslContextBuilder {
18951895 }
18961896
18971897 /// Configures whether ClientHello extensions should be permuted.
1898- ///
1899- /// Note: This is gated to non-fips because the fips feature builds with a separate
1900- /// version of BoringSSL which doesn't yet include these APIs.
1901- /// Once the submoduled fips commit is upgraded, these gates can be removed.
19021898 #[ corresponds( SSL_CTX_set_permute_extensions ) ]
19031899 pub fn set_permute_extensions ( & mut self , enabled : bool ) {
19041900 unsafe { ffi:: SSL_CTX_set_permute_extensions ( self . as_ptr ( ) , enabled as _ ) }
@@ -2938,10 +2934,6 @@ impl SslRef {
29382934
29392935 /// Configures whether ClientHello extensions should be permuted.
29402936 #[ corresponds( SSL_set_permute_extensions ) ]
2941- ///
2942- /// Note: This is gated to non-fips because the fips feature builds with a separate
2943- /// version of BoringSSL which doesn't yet include these APIs.
2944- /// Once the submoduled fips commit is upgraded, these gates can be removed.
29452937 pub fn set_permute_extensions ( & mut self , enabled : bool ) {
29462938 unsafe { ffi:: SSL_set_permute_extensions ( self . as_ptr ( ) , enabled as _ ) }
29472939 }
You can’t perform that action at this time.
0 commit comments