The Sleuth Kit  4.11.1
Macros | Functions
md5c.c File Reference

Local copy of RSA Data Security, Inc. More...

#include "tsk_base_i.h"

Macros

#define F(x, y, z)   (((x) & (y)) | ((~x) & (z)))
 
#define FF(a, b, c, d, x, s, ac)
 
#define G(x, y, z)   (((x) & (z)) | ((y) & (~z)))
 
#define GG(a, b, c, d, x, s, ac)
 
#define H(x, y, z)   ((x) ^ (y) ^ (z))
 
#define HH(a, b, c, d, x, s, ac)
 
#define I(x, y, z)   ((y) ^ ((x) | (~z)))
 
#define II(a, b, c, d, x, s, ac)
 
#define ROTATE_LEFT(x, n)   (((x) << (n)) | ((x) >> (32-(n))))
 
#define S11   7
 
#define S12   12
 
#define S13   17
 
#define S14   22
 
#define S21   5
 
#define S22   9
 
#define S23   14
 
#define S24   20
 
#define S31   4
 
#define S32   11
 
#define S33   16
 
#define S34   23
 
#define S41   6
 
#define S42   10
 
#define S43   15
 
#define S44   21
 

Functions

void TSK_MD5_Final (unsigned char digest[16], TSK_MD5_CTX *context)
 Calculate the MD5 hash of the data added to this context. More...
 
void TSK_MD5_Init (TSK_MD5_CTX *context)
 Initialize a MD5 context structure so that data can be added to it. More...
 
void TSK_MD5_Update (TSK_MD5_CTX *context, unsigned char *input, unsigned int inputLen)
 Add data to an initialized MD5 operation. More...
 

Detailed Description

Local copy of RSA Data Security, Inc.

MD5 Message-Digest Algorithm.

Macro Definition Documentation

#define FF (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
}
#define GG (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
}
#define HH (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
}
#define II (   a,
  b,
  c,
  d,
  x,
  s,
  ac 
)
Value:
{ \
(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) = ROTATE_LEFT ((a), (s)); \
(a) += (b); \
}

Copyright © 2007-2020 Brian Carrier. (carrier -at- sleuthkit -dot- org)
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.