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 _ ) }
@@ -2977,10 +2973,6 @@ impl SslRef {
29772973
29782974 /// Configures whether ClientHello extensions should be permuted.
29792975 #[ corresponds( SSL_set_permute_extensions ) ]
2980- ///
2981- /// Note: This is gated to non-fips because the fips feature builds with a separate
2982- /// version of BoringSSL which doesn't yet include these APIs.
2983- /// Once the submoduled fips commit is upgraded, these gates can be removed.
29842976 pub fn set_permute_extensions ( & mut self , enabled : bool ) {
29852977 unsafe { ffi:: SSL_set_permute_extensions ( self . as_ptr ( ) , enabled as _ ) }
29862978 }
You can’t perform that action at this time.
0 commit comments