Lines Matching refs:function
113 Set this if the implementation's init() function should be called even
118 Set this to have the implementation's ctrl() function called with
126 B<EVP_CIPHER> with this flag set, the implementation's ctrl() function
137 This is done by calling the implementation's ctrl() function with the
143 Set this to have the implementation's ctrl() function called with
189 EVP_CIPHER_meth_set_init() sets the cipher init function for
191 The cipher init function is called by EVP_CipherInit(),
195 EVP_CIPHER_meth_set_do_cipher() sets the cipher function for
197 The cipher function is called by EVP_CipherUpdate(),
202 EVP_CIPHER_meth_set_cleanup() sets the function for B<cipher> to do
205 Note that the cleanup function is passed a B<EVP_CIPHER_CTX *>, the
208 This cleanup function is called by EVP_CIPHER_CTX_reset() and
211 EVP_CIPHER_meth_set_set_asn1_params() sets the function for B<cipher>
213 This function is called by EVP_CIPHER_param_to_asn1().
214 EVP_CIPHER_meth_set_get_asn1_params() sets the function for B<cipher>
222 EVP_CIPHER_meth_set_ctrl() sets the control function for B<cipher>.
236 respective B<cipher> function.