RetroArch
Classes | Functions
md5.h File Reference
#include "config.h"
#include <stddef.h>
#include <stdint.h>
Include dependency graph for md5.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  mbedtls_md5_context
 MD5 context structure. More...
 

Functions

void mbedtls_md5_init (mbedtls_md5_context *ctx)
 Initialize MD5 context. More...
 
void mbedtls_md5_free (mbedtls_md5_context *ctx)
 Clear MD5 context. More...
 
void mbedtls_md5_clone (mbedtls_md5_context *dst, const mbedtls_md5_context *src)
 Clone (the state of) an MD5 context. More...
 
void mbedtls_md5_starts (mbedtls_md5_context *ctx)
 MD5 context setup. More...
 
void mbedtls_md5_update (mbedtls_md5_context *ctx, const unsigned char *input, size_t ilen)
 MD5 process buffer. More...
 
void mbedtls_md5_finish (mbedtls_md5_context *ctx, unsigned char output[16])
 MD5 final digest. More...
 
void mbedtls_md5_process (mbedtls_md5_context *ctx, const unsigned char data[64])
 
void mbedtls_md5 (const unsigned char *input, size_t ilen, unsigned char output[16])
 Output = MD5( input buffer ) More...
 
int mbedtls_md5_self_test (int verbose)
 Checkup routine. More...
 

Function Documentation

◆ mbedtls_md5()

void mbedtls_md5 ( const unsigned char *  input,
size_t  ilen,
unsigned char  output[16] 
)

Output = MD5( input buffer )

Parameters
inputbuffer holding the data
ilenlength of the input data
outputMD5 checksum result
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mbedtls_md5_clone()

void mbedtls_md5_clone ( mbedtls_md5_context dst,
const mbedtls_md5_context src 
)

Clone (the state of) an MD5 context.

Parameters
dstThe destination context
srcThe context to be cloned
Here is the caller graph for this function:

◆ mbedtls_md5_finish()

void mbedtls_md5_finish ( mbedtls_md5_context ctx,
unsigned char  output[16] 
)

MD5 final digest.

Parameters
ctxMD5 context
outputMD5 checksum result
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mbedtls_md5_free()

void mbedtls_md5_free ( mbedtls_md5_context ctx)

Clear MD5 context.

Parameters
ctxMD5 context to be cleared
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mbedtls_md5_init()

void mbedtls_md5_init ( mbedtls_md5_context ctx)

Initialize MD5 context.

Parameters
ctxMD5 context to be initialized
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mbedtls_md5_process()

void mbedtls_md5_process ( mbedtls_md5_context ctx,
const unsigned char  data[64] 
)
Here is the call graph for this function:
Here is the caller graph for this function:

◆ mbedtls_md5_self_test()

int mbedtls_md5_self_test ( int  verbose)

Checkup routine.

Returns
0 if successful, or 1 if the test failed
Here is the call graph for this function:

◆ mbedtls_md5_starts()

void mbedtls_md5_starts ( mbedtls_md5_context ctx)

MD5 context setup.

Parameters
ctxcontext to be initialized
Here is the caller graph for this function:

◆ mbedtls_md5_update()

void mbedtls_md5_update ( mbedtls_md5_context ctx,
const unsigned char *  input,
size_t  ilen 
)

MD5 process buffer.

Parameters
ctxMD5 context
inputbuffer holding the data
ilenlength of the input data
Here is the call graph for this function:
Here is the caller graph for this function: