We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56a113d commit d0a7c87Copy full SHA for d0a7c87
cryptoki/src/mechanism/kbkdf.rs
@@ -102,6 +102,9 @@ impl KbkdfDkmLengthFormat {
102
#[derive(Debug, Clone, Copy)]
103
pub enum PrfDataParamType<'a> {
104
/// Identifies location of predefined iteration variable in constructed PRF input data.
105
+ ///
106
+ /// For counter-mode, this must contain a [`KbkdfCounterFormat`].
107
+ /// For feedback- and double-pipeline mode, this must contain [`None`].
108
IterationVariable(Option<&'a KbkdfCounterFormat>),
109
/// Identifies location of counter in constructed PRF input data.
110
Counter(&'a KbkdfCounterFormat),
0 commit comments