1 | /** @file
|
---|
2 | * IPRT - Message-Digest algorithm 5.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___iprt_md5_h
|
---|
27 | #define ___iprt_md5_h
|
---|
28 |
|
---|
29 | #include <iprt/types.h>
|
---|
30 |
|
---|
31 | /** @defgroup grp_rt_md5 RTMd5 - Message-Digest algorithm 5
|
---|
32 | * @ingroup grp_rt
|
---|
33 | * @{
|
---|
34 | */
|
---|
35 |
|
---|
36 | /** Size of a MD5 hash. */
|
---|
37 | #define RTMD5_HASH_SIZE 16
|
---|
38 | /** @deprecated Use RTMD5_HASH_SIZE. */
|
---|
39 | #define RTMD5HASHSIZE RTMD5_HASH_SIZE
|
---|
40 | /** The length of a MD5 digest string. The terminator is not included. */
|
---|
41 | #define RTMD5_DIGEST_LEN 32
|
---|
42 | /** Size of a MD5 hash.
|
---|
43 | * @deprecated Use RTMD5_DIGEST_LEN */
|
---|
44 | #define RTMD5_STRING_LEN RTMD5_DIGEST_LEN
|
---|
45 |
|
---|
46 | /**
|
---|
47 | * MD5 hash algorithm context.
|
---|
48 | */
|
---|
49 | typedef struct RTMD5CONTEXT
|
---|
50 | {
|
---|
51 | uint32_t in[16];
|
---|
52 | uint32_t buf[4];
|
---|
53 | uint32_t bits[2];
|
---|
54 | } RTMD5CONTEXT;
|
---|
55 |
|
---|
56 | /** Pointer to MD5 hash algorithm context. */
|
---|
57 | typedef RTMD5CONTEXT *PRTMD5CONTEXT;
|
---|
58 |
|
---|
59 | RT_C_DECLS_BEGIN
|
---|
60 |
|
---|
61 | /**
|
---|
62 | * Compute the MD5 hash of the data.
|
---|
63 | *
|
---|
64 | * @param pvBuf Pointer to data.
|
---|
65 | * @param cbBuf Length of data (in bytes).
|
---|
66 | * @param pabDigest Where to store the hash.
|
---|
67 | * (What's passed is a pointer to the caller's buffer.)
|
---|
68 | */
|
---|
69 | RTDECL(void) RTMd5(const void *pvBuf, size_t cbBuf, uint8_t pabDigest[RTMD5HASHSIZE]);
|
---|
70 |
|
---|
71 | /**
|
---|
72 | * Initialize MD5 context.
|
---|
73 | *
|
---|
74 | * @param pCtx Pointer to the MD5 context to initialize.
|
---|
75 | */
|
---|
76 | RTDECL(void) RTMd5Init(PRTMD5CONTEXT pCtx);
|
---|
77 |
|
---|
78 | /**
|
---|
79 | * Feed data into the MD5 computation.
|
---|
80 | *
|
---|
81 | * @param pCtx Pointer to the MD5 context.
|
---|
82 | * @param pvBuf Pointer to data.
|
---|
83 | * @param cbBuf Length of data (in bytes).
|
---|
84 | */
|
---|
85 | RTDECL(void) RTMd5Update(PRTMD5CONTEXT pCtx, const void *pvBuf, size_t cbBuf);
|
---|
86 |
|
---|
87 | /**
|
---|
88 | * Compute the MD5 hash of the data.
|
---|
89 | *
|
---|
90 | * @param pabDigest Where to store the hash.
|
---|
91 | * (What's passed is a pointer to the caller's buffer.)
|
---|
92 | * @param pCtx Pointer to the MD5 context.
|
---|
93 | */
|
---|
94 | RTDECL(void) RTMd5Final(uint8_t pabDigest[RTMD5HASHSIZE], PRTMD5CONTEXT pCtx);
|
---|
95 |
|
---|
96 | /**
|
---|
97 | * Converts a MD5 hash to a digest string.
|
---|
98 | *
|
---|
99 | * @returns IPRT status code.
|
---|
100 | *
|
---|
101 | * @param pabDigest The binary digest returned by RTMd5Final or RTMd5.
|
---|
102 | * @param pszDigest Where to return the stringified digest.
|
---|
103 | * @param cchDigest The size of the output buffer. Should be at least
|
---|
104 | * RTMD5_STRING_LEN + 1 bytes.
|
---|
105 | */
|
---|
106 | RTDECL(int) RTMd5ToString(uint8_t const pabDigest[RTMD5_HASH_SIZE], char *pszDigest, size_t cchDigest);
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * Converts a MD5 hash to a digest string.
|
---|
110 | *
|
---|
111 | * @returns IPRT status code.
|
---|
112 | *
|
---|
113 | * @param pszDigest The stringified digest. Leading and trailing spaces are
|
---|
114 | * ignored.
|
---|
115 | * @param pabDigest Where to store the hash. (What is passed is a pointer to
|
---|
116 | * the caller's buffer.)
|
---|
117 | */
|
---|
118 | RTDECL(int) RTMd5FromString(char const *pszDigest, uint8_t pabDigest[RTMD5_HASH_SIZE]);
|
---|
119 |
|
---|
120 |
|
---|
121 | RT_C_DECLS_END
|
---|
122 |
|
---|
123 | /** @} */
|
---|
124 |
|
---|
125 | #endif
|
---|
126 |
|
---|