Rizin
unix-like reverse engineering framework and cli tools
algo_md5.c File Reference
#include <rz_hash.h>
#include <rz_util/rz_assert.h>
#include "../algorithms/md5/md5.h"

Go to the source code of this file.

Functions

static void * plugin_md5_context_new ()
 
static void plugin_md5_context_free (void *context)
 
static RzHashSize plugin_md5_digest_size (void *context)
 
static RzHashSize plugin_md5_block_size (void *context)
 
static bool plugin_md5_init (void *context)
 
static bool plugin_md5_update (void *context, const ut8 *data, ut64 size)
 
static bool plugin_md5_final (void *context, ut8 *digest)
 
static bool plugin_md5_small_block (const ut8 *data, ut64 size, ut8 **digest, RzHashSize *digest_size)
 

Variables

RzHashPlugin rz_hash_plugin_md5
 
RZ_API RzLibStruct rizin_plugin
 

Function Documentation

◆ plugin_md5_block_size()

static RzHashSize plugin_md5_block_size ( void *  context)
static

Definition at line 34 of file algo_md5.c.

34  {
36 }
#define RZ_HASH_MD5_BLOCK_LENGTH
Definition: md5.h:10

References RZ_HASH_MD5_BLOCK_LENGTH.

◆ plugin_md5_context_free()

static void plugin_md5_context_free ( void *  context)
static

Definition at line 26 of file algo_md5.c.

26  {
27  free(context);
28 }
RZ_API void Ht_() free(HtName_(Ht) *ht)
Definition: ht_inc.c:130

References free().

◆ plugin_md5_context_new()

static void* plugin_md5_context_new ( )
static

Use Rizin implementation, not OpenSSL lib

Definition at line 22 of file algo_md5.c.

22  {
23  return RZ_NEW0(rz_MD5_CTX);
24 }
#define RZ_NEW0(x)
Definition: rz_types.h:284
Definition: md5.h:36

References RZ_NEW0.

◆ plugin_md5_digest_size()

static RzHashSize plugin_md5_digest_size ( void *  context)
static

Definition at line 30 of file algo_md5.c.

30  {
32 }
#define RZ_HASH_MD5_DIGEST_SIZE
Definition: md5.h:9

References RZ_HASH_MD5_DIGEST_SIZE.

◆ plugin_md5_final()

static bool plugin_md5_final ( void *  context,
ut8 digest 
)
static

Definition at line 52 of file algo_md5.c.

52  {
53  rz_return_val_if_fail(context && digest, false);
54 
55  rz_MD5Final(digest, (rz_MD5_CTX *)context);
56  return true;
57 }
RZ_IPI void rz_MD5Final(unsigned char digest[MD5_DIGEST_LENGTH], rz_MD5_CTX *ctx)
Definition: md5.c:218
#define rz_return_val_if_fail(expr, val)
Definition: rz_assert.h:108

References rz_MD5Final(), and rz_return_val_if_fail.

◆ plugin_md5_init()

static bool plugin_md5_init ( void *  context)
static

Definition at line 38 of file algo_md5.c.

38  {
40 
42  return true;
43 }
RZ_IPI void rz_MD5Init(rz_MD5_CTX *ctx)
Definition: md5.c:163

References rz_MD5Init(), and rz_return_val_if_fail.

◆ plugin_md5_small_block()

static bool plugin_md5_small_block ( const ut8 data,
ut64  size,
ut8 **  digest,
RzHashSize digest_size 
)
static

Definition at line 59 of file algo_md5.c.

59  {
60  rz_return_val_if_fail(data && digest, false);
62  if (!dgst) {
63  return false;
64  }
65 
67  rz_MD5Init(&ctx);
68  rz_MD5Update(&ctx, data, size);
69  rz_MD5Final(dgst, &ctx);
70 
71  *digest = dgst;
72  if (digest_size) {
73  *digest_size = RZ_HASH_MD5_DIGEST_SIZE;
74  }
75  return true;
76 }
voidpf void uLong size
Definition: ioapi.h:138
uint8_t ut8
Definition: lh5801.h:11
RZ_IPI void rz_MD5Update(rz_MD5_CTX *ctx, const unsigned char *input, size_t len)
Definition: md5.c:176
void * malloc(size_t size)
Definition: malloc.c:123

References malloc(), RZ_HASH_MD5_DIGEST_SIZE, rz_MD5Final(), rz_MD5Init(), rz_MD5Update(), and rz_return_val_if_fail.

◆ plugin_md5_update()

static bool plugin_md5_update ( void *  context,
const ut8 data,
ut64  size 
)
static

Definition at line 45 of file algo_md5.c.

45  {
46  rz_return_val_if_fail(context && data, false);
47 
49  return true;
50 }

References rz_MD5Update(), and rz_return_val_if_fail.

Variable Documentation

◆ rizin_plugin

RZ_API RzLibStruct rizin_plugin
Initial value:
= {
.version = RZ_VERSION
}
RzHashPlugin rz_hash_plugin_md5
Definition: algo_md5.c:78
@ RZ_LIB_TYPE_HASH
Definition: rz_lib.h:82
#define RZ_VERSION
Definition: rz_version.h:8

Definition at line 96 of file algo_md5.c.

◆ rz_hash_plugin_md5

RzHashPlugin rz_hash_plugin_md5
Initial value:
= {
.name = "md5",
.license = "LGPL2",
.author = "Alan DeKok (md5 algorithm implementation), deroad (plugin)",
.support_hmac = true,
.context_new = plugin_md5_context_new,
.context_free = plugin_md5_context_free,
.digest_size = plugin_md5_digest_size,
.block_size = plugin_md5_block_size,
.init = plugin_md5_init,
.update = plugin_md5_update,
.final = plugin_md5_final,
.small_block = plugin_md5_small_block,
}
static bool plugin_md5_update(void *context, const ut8 *data, ut64 size)
Definition: algo_md5.c:45
static RzHashSize plugin_md5_block_size(void *context)
Definition: algo_md5.c:34
static void * plugin_md5_context_new()
Definition: algo_md5.c:22
static bool plugin_md5_final(void *context, ut8 *digest)
Definition: algo_md5.c:52
static void plugin_md5_context_free(void *context)
Definition: algo_md5.c:26
static RzHashSize plugin_md5_digest_size(void *context)
Definition: algo_md5.c:30
static bool plugin_md5_small_block(const ut8 *data, ut64 size, ut8 **digest, RzHashSize *digest_size)
Definition: algo_md5.c:59
static bool plugin_md5_init(void *context)
Definition: algo_md5.c:38

Definition at line 78 of file algo_md5.c.