Skip to content

Commit b1dcfbb

Browse files
committed
Remove outdated comments on FIPS API compatibility
1 parent df76125 commit b1dcfbb

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

boring/src/ssl/mod.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)