Lines Matching refs:I

80 The parameter I<provctx> is the provider context generated during provider
82 The parameter I<parent> specifies another rand instance to be used for
85 The parameter I<parent_calls> points to the dispatch table for I<parent>.
89 the I<mctx> parameter.
90 If it receives NULL as I<ctx> value, it should not do anything other than
98 OSSL_FUNC_rand_instantiate() is used to instantiate the DRBG I<ctx> at a requested
99 security I<strength>. In addition, I<prediction_resistance> can be requested.
100 Additional input I<addin> of length I<addin_len> bytes can optionally
101 be provided. The parameters specified in I<params> configure the DRBG and these
104 OSSL_FUNC_rand_uninstantiate() is used to uninstantiate the DRBG I<ctx>. After being
108 OSSL_FUNC_rand_generate() is used to generate random bytes from the DRBG I<ctx>.
109 It will generate I<outlen> bytes placing them into the buffer pointed to by
110 I<out>. The generated bytes will meet the specified security I<strength> and,
111 if I<prediction_resistance> is true, the bytes will be produced after reseeding
112 from a live entropy source. Additional input I<addin> of length I<addin_len>
117 OSSL_FUNC_rand_nonce() is used to generate a nonce of the given I<strength> with a
118 length from I<min_noncelen> to I<max_noncelen>. If the output buffer I<out> is
123 security level of I<entropy> bits and there will be between I<min_len>
124 and I<max_len> inclusive bytes in total. If I<prediction_resistance> is
126 input I<addin> of length I<addin_len> bytes can optionally be provided.
127 A pointer to the seed material is returned in I<*buffer> and this must be
130 OSSL_FUNC_rand_clear_seed() frees a seed I<buffer> of length I<b_len> bytes
158 provider algorithm and stores them in I<params>.
161 provider side rand context I<ctx> to I<params>.
163 Passing NULL for I<params> should return true.
166 associated with the given provider side rand context I<ctx> and stores them
167 in I<params>.
168 Passing NULL for I<params> should return true.
176 associated with the provider side context I<ctx> in its current state
178 with the provider side algorithm I<provctx>.