RetroArch
|
#include <md_internal.h>
Public Attributes | |
mbedtls_md_type_t | type |
const char * | name |
int | size |
int | block_size |
void(* | starts_func )(void *ctx) |
void(* | update_func )(void *ctx, const unsigned char *input, size_t ilen) |
void(* | finish_func )(void *ctx, unsigned char *output) |
void(* | digest_func )(const unsigned char *input, size_t ilen, unsigned char *output) |
void *(* | ctx_alloc_func )(void) |
void(* | ctx_free_func )(void *ctx) |
void(* | clone_func )(void *dst, const void *src) |
void(* | process_func )(void *ctx, const unsigned char *input) |
Message digest information. Allows message digest functions to be called in a generic way.
int mbedtls_md_info_t::block_size |
Block length of the digest function in bytes
void(* mbedtls_md_info_t::digest_func) (const unsigned char *input, size_t ilen, unsigned char *output) |
Generic digest function
Digest finalisation function
const char* mbedtls_md_info_t::name |
Name of the message digest
int mbedtls_md_info_t::size |
Output length of the digest function in bytes
mbedtls_md_type_t mbedtls_md_info_t::type |
Digest identifier
Digest update function