We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52d84b0 commit ab61a5aCopy full SHA for ab61a5a
src/lib.rs
@@ -92,11 +92,11 @@ only two of options listed in the hpke draft are available.
92
pub enum Kem {
93
/// DHKEM(P-256, HKDF-SHA256) [NISTCurves](https://doi.org/10.6028/nist.fips.186-4)
94
#[cfg(feature = "kem-dh-p256-hkdf-sha256")]
95
- DhP256HkdfSha256 = 10,
+ DhP256HkdfSha256 = 16,
96
97
/// DHKEM(X25519, HKDF-SHA256) [RFC7748](https://www.rfc-editor.org/info/rfc7748)
98
#[cfg(feature = "kem-x25519-hkdf-sha256")]
99
- X25519HkdfSha256 = 20,
+ X25519HkdfSha256 = 32,
100
}
101
102
/**
0 commit comments