mbedtls_md_info_t is only used within mbedTLS.
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedReferences

Fields

Field
Declared as
Description
Digest identifier.
const char *
Name of the message digest.
int
Output length of the digest function in bytes.
int
Block length of the digest function in bytes.
int (*)( void *ctx )
Digest initialisation function.
int (*)( void *ctx, const unsigned char *input, size_t ilen )
Digest update function.
int (*)( void *ctx, unsigned char *output )
Digest finalisation function.
int (*)( const unsigned char *input, size_t ilen, unsigned char *output )
Generic digest function.
void * (*)( void )
Allocate a new context.
void (*)( void *ctx )
Free the given context.
void (*)( void *dst, const void *src )
Clone state from a context.
int (*)( void *ctx, const unsigned char *input )
Internal use only.

References

from examples