]> mj.ucw.cz Git - moe.git/blob - ucw/md5.h
Box: Record in the meta-file whether the process has been killed
[moe.git] / ucw / md5.h
1 /*
2  *      UCW Library -- MD5 Message Digest
3  *
4  *      This file is in public domain (see ucw/md5.c).
5  */
6
7 #ifndef _UCW_MD5_H
8 #define _UCW_MD5_H
9
10 /**
11  * Internal MD5 hash state.
12  * You should use it just as an opaque handle only.
13  */
14 typedef struct {
15         u32 buf[4];
16         u32 bits[2];
17         byte in[64];
18 } md5_context;
19
20 void md5_init(md5_context *context); /** Initialize the MD5 hashing algorithm in @context. **/
21 /**
22  * Push another @len bytes of data from @buf to the MD5 hash
23  * represented by @context. You can call it multiple time on the same
24  * @context without reinitializing it and the result will be the same
25  * as if you concatenated all the data together and fed them here all at
26  * once.
27  */
28 void md5_update(md5_context *context, const byte *buf, uns len);
29 /**
30  * Call this after the last @md5_update(). It will terminate the
31  * algorithm and return a pointer to the result.
32  *
33  * Note that the data it points to are stored inside the @context, so
34  * if you use it to compute another hash or it ceases to exist, the
35  * pointer becomes invalid.
36  *
37  * To convert the hash to its usual hexadecimal representation, see
38  * <<string:mem_to_hex()>>.
39  */
40 byte *md5_final(md5_context *context);
41
42 /**
43  * This is the core routine of the MD5 algorithm. It takes 16 longwords of
44  * data in @in and transforms the hash in @buf according to them.
45  *
46  * You probably do not want to call this one directly.
47  */
48 void md5_transform(u32 buf[4], const u32 in[16]);
49
50 /**
51  * MD5 one-shot convenience method. It takes @length bytes from
52  * @buffer, creates the hash from them and returns it in @output.
53  *
54  * It is equivalent to this code:
55  *
56  *  md5_context c;
57  *  md5_init(&c);
58  *  md5_update(&c, buffer, length);
59  *  memcpy(outbuf, md5_final(&c), MD5_SIZE);
60  */
61 void md5_hash_buffer(byte *outbuf, const byte *buffer, uns length);
62
63 #define MD5_HEX_SIZE 33 /** How many bytes a string buffer for MD5 in hexadecimal format should have. **/
64 #define MD5_SIZE 16 /** Number of bytes the MD5 hash takes in the binary form. **/
65
66 #endif /* !_UCW_MD5_H */