File: md5.h

package info (click to toggle)
util-linux 2.41.3-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 93,056 kB
  • sloc: ansic: 179,151; sh: 22,716; yacc: 1,284; makefile: 527; xml: 422; python: 316; lex: 89; ruby: 75; csh: 37; exp: 19; sed: 16; perl: 15; sql: 9
file content (28 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * No copyright is claimed. This code is in the public domain; do with it what
 * you wish.
 */
#ifndef UTIL_LINUX_MD5_H
#define UTIL_LINUX_MD5_H

#include <stdint.h>

#define UL_MD5LENGTH 16

struct UL_MD5Context {
	uint32_t buf[4];
	uint32_t bits[2];
	unsigned char in[64];
};

void ul_MD5Init(struct UL_MD5Context *ctx);
void ul_MD5Update(struct UL_MD5Context *ctx, unsigned char const *buf, unsigned len);
void ul_MD5Final(unsigned char digest[UL_MD5LENGTH], struct UL_MD5Context *ctx);
void ul_MD5Transform(uint32_t buf[4], uint32_t const in[16]);

/*
 * This is needed to make RSAREF happy on some MS-DOS compilers.
 */
typedef struct UL_MD5Context UL_MD5_CTX;

#endif /* !UTIL_LINUX_MD5_H */