33typedef struct kos_md5_cxt {
84void kos_md5(
const uint8_t *input, uint32_t size, uint8_t output[16]);
static pvr_poly_cxt_t cxt
Definition bubbles.c:28
void kos_md5_start(kos_md5_cxt_t *cxt)
Initialize a MD5 context.
void kos_md5_finish(kos_md5_cxt_t *cxt, uint8_t output[16])
Complete a MD5 hash.
void kos_md5(const uint8_t *input, uint32_t size, uint8_t output[16])
Compute the hash of a block of data with MD5.
void kos_md5_hash_block(kos_md5_cxt_t *cxt, const uint8_t *input, uint32_t size)
Hash a block of data with MD5.
MD5 context.
Definition md5.h:33
uint64_t size
Size of the data in buf.
Definition md5.h:34