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> {
4040 }
4141}
4242
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.
4545#[ derive( Debug , Clone , Copy ) ]
4646#[ repr( transparent) ]
4747pub struct ExtractParams ( CK_EXTRACT_PARAMS ) ;
4848
4949impl 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 .
5252 ///
5353 /// # Arguments
5454 ///
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.
5656 pub fn new ( index : usize ) -> Self {
5757 Self (
5858 index
You can’t perform that action at this time.
0 commit comments