Searched defs:evp_md_st (Results 1 – 1 of 1) sorted by relevance
115 struct evp_md_st { struct116 int type;117 int pkey_type;118 int md_size;119 unsigned long flags;120 int (*init) (EVP_MD_CTX *ctx);121 int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count);122 int (*final) (EVP_MD_CTX *ctx, unsigned char *md);123 int (*copy) (EVP_MD_CTX *to, const EVP_MD_CTX *from);124 int (*cleanup) (EVP_MD_CTX *ctx);[all …]