File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,19 +40,19 @@ impl<'a> KeyDerivationStringData<'a> {
40
40
}
41
41
}
42
42
43
- /// A parameter indicating the index of the base key from which to extract the
44
- /// derived key.
43
+ /// A parameter indicating the index of the bit in the the base key from which
44
+ /// to extract the derived key.
45
45
#[ derive( Debug , Clone , Copy ) ]
46
46
#[ repr( transparent) ]
47
47
pub struct ExtractParams ( CK_EXTRACT_PARAMS ) ;
48
48
49
49
impl ExtractParams {
50
- /// Construct parameter from index to extract the derived key from the base
51
- /// key.
50
+ /// Construct parameter from index of bit from which to extract the derived
51
+ /// key from the base key .
52
52
///
53
53
/// # Arguments
54
54
///
55
- /// * `index` - The index from which to extract the derived key from the base key.
55
+ /// * `index` - The bit index from which to extract the derived key from the base key.
56
56
pub fn new ( index : usize ) -> Self {
57
57
Self (
58
58
index
You can’t perform that action at this time.
0 commit comments