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 20582aa commit 63c0364Copy full SHA for 63c0364
src/hkdf.rs
@@ -94,9 +94,9 @@ impl From<Okm<'_, Algorithm>> for Salt {
94
}
95
96
97
-/// The length of the OKM (Output Keying Material) for a `Prf::expand()` call.
+/// The length of the OKM (Output Keying Material) for a `Prk::expand()` call.
98
pub trait KeyType {
99
- /// The length that `Prf::expand()` should expand its input to.
+ /// The length that `Prk::expand()` should expand its input to.
100
fn len(&self) -> usize;
101
102
@@ -162,7 +162,7 @@ pub struct Okm<'a, L: KeyType> {
162
163
164
impl<L: KeyType> Okm<'_, L> {
165
- /// The `OkmLength` given to `Prf::expand()`.
+ /// The `OkmLength` given to `Prk::expand()`.
166
#[inline]
167
pub fn len(&self) -> &L {
168
&self.len
0 commit comments