Lines Matching refs:function
100 This digest method is an extensible-output function (XOF) and supports
129 EVP_MD_meth_set_init() sets the digest init function for B<md>.
130 The digest init function is called by EVP_Digest(), EVP_DigestInit(),
134 EVP_MD_meth_set_update() sets the digest update function for B<md>.
135 The digest update function is called by EVP_Digest(), EVP_DigestUpdate() and
138 EVP_MD_meth_set_final() sets the digest final function for B<md>.
139 The digest final function is called by EVP_Digest(), EVP_DigestFinal(),
142 EVP_MD_meth_set_copy() sets the function for B<md> to do extra
145 the data, there is no need for this copy function.
146 Note that the copy function is passed two B<EVP_MD_CTX *>, the private
148 This copy function is called by EVP_MD_CTX_copy() and
151 EVP_MD_meth_set_cleanup() sets the function for B<md> to do extra
154 Note that the cleanup function is passed a B<EVP_MD_CTX *>, the
156 This cleanup function is called by EVP_MD_CTX_reset() and
159 EVP_MD_meth_set_ctrl() sets the control function for B<md>.
179 respective B<md> function.