Searched defs:env_md_st (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/boringssl/src/crypto/digest/ |
D | internal.h | 67 struct env_md_st { struct 70 int type; 73 unsigned md_size; 76 uint32_t flags; 80 int (*init)(EVP_MD_CTX *ctx); 83 int (*update)(EVP_MD_CTX *ctx, const void *data, size_t count); 86 int (*final)(EVP_MD_CTX *ctx, uint8_t *out); 89 unsigned block_size; 92 unsigned ctx_size;
|
/external/openssl/crypto/evp/ |
D | evp.h | 160 struct env_md_st struct 162 int type; 163 int pkey_type; 164 int md_size; 165 unsigned long flags; 166 int (*init)(EVP_MD_CTX *ctx); 167 int (*update)(EVP_MD_CTX *ctx,const void *data,size_t count); 168 int (*final)(EVP_MD_CTX *ctx,unsigned char *md); 169 int (*copy)(EVP_MD_CTX *to,const EVP_MD_CTX *from); 170 int (*cleanup)(EVP_MD_CTX *ctx); [all …]
|
/external/openssl/include/openssl/ |
D | evp.h | 160 struct env_md_st struct 162 int type; 163 int pkey_type; 164 int md_size; 165 unsigned long flags; 166 int (*init)(EVP_MD_CTX *ctx); 167 int (*update)(EVP_MD_CTX *ctx,const void *data,size_t count); 168 int (*final)(EVP_MD_CTX *ctx,unsigned char *md); 169 int (*copy)(EVP_MD_CTX *to,const EVP_MD_CTX *from); 170 int (*cleanup)(EVP_MD_CTX *ctx); [all …]
|