Searched defs:evp_md_st (Results 1 – 2 of 2) sorted by relevance
247 struct evp_md_st { struct249 int type;252 int pkey_type;253 int md_size;254 unsigned long flags;255 int origin;256 int (*init) (EVP_MD_CTX *ctx);257 int (*update) (EVP_MD_CTX *ctx, const void *data, size_t count);258 int (*final) (EVP_MD_CTX *ctx, unsigned char *md);259 int (*copy) (EVP_MD_CTX *to, const EVP_MD_CTX *from);[all …]
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 …]