Lines Matching refs:I
86 PKCS5_PBE_keyivgen() and PKCS5_PBE_keyivgen_ex() take a password I<pass> of
87 length I<passlen>, parameters I<param> and a message digest function I<md_type>
89 then used to initialise the cipher context I<ctx> with a cipher I<cipher> for
90 encryption (I<en_de>=1) or decryption (I<en_de>=0).
92 I<pass> is an optional parameter and can be NULL. If I<passlen> is -1, then the
93 function will calculate the length of I<pass> using strlen().
102 I<salt> is the salt used in the derivation of length I<saltlen>. If the
103 I<salt> is NULL, then I<saltlen> must be 0. The function will not
104 attempt to calculate the length of the I<salt> because it is not assumed to
107 I<iter> is the iteration count and its value should be greater than or
109 I<iter> less than 1 is treated as a single iteration.
111 I<digest> is the message digest function used in the derivation.
113 Functions ending in _ex() take optional parameters I<libctx> and I<propq> which
130 If I<salt> is NULL, then I<saltlen> specifies the size in bytes of the random salt to
131 generate. If I<saltlen> is 0 then a default size is used.