We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c4ea22 commit 9b34d35Copy full SHA for 9b34d35
boring/src/ssl/mod.rs
@@ -738,6 +738,12 @@ impl SslCurve {
738
))]
739
pub const P256_KYBER768_DRAFT00: SslCurve = SslCurve(ffi::SSL_CURVE_P256_KYBER768_DRAFT00 as _);
740
741
+ #[cfg(all(
742
+ not(any(feature = "fips", feature = "fips-precompiled")),
743
+ feature = "pq-experimental"
744
+ ))]
745
+ pub const X25519_MLKEM768: SslCurve = SslCurve(ffi::SSL_CURVE_X25519_MLKEM768 as _);
746
+
747
/// Returns the curve name
748
#[corresponds(SSL_get_curve_name)]
749
pub fn name(&self) -> Option<&'static str> {
0 commit comments