Skip to content

Commit 975281d

Browse files
committed
Remove outdated comments on FIPS API compatibility
1 parent 1e14aa8 commit 975281d

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 _) }
@@ -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
}

0 commit comments

Comments
 (0)