Windows msbuild triggers too much to rebuild.
[mono.git] / mono / utils / mono-digest.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * This code implements the MD5 message-digest algorithm.
4  * The algorithm is due to Ron Rivest.  This code was
5  * written by Colin Plumb in 1993, no copyright is claimed.
6  * This code is in the public domain; do with it what you wish.
7  *
8  * Equivalent code is available from RSA Data Security, Inc.
9  * This code has been tested against that, and is equivalent,
10  * except that you don't need to include two pages of legalese
11  * with every copy.
12  *
13  * To compute the message digest of a chunk of bytes, declare an
14  * MD5Context structure, pass it to rpmMD5Init, call rpmMD5Update as
15  * needed on buffers full of bytes, and then call rpmMD5Final, which
16  * will fill a supplied 16-byte array with the digest.
17  */
18
19 /* parts of this file are :
20  * Written March 1993 by Branko Lankester
21  * Modified June 1993 by Colin Plumb for altered md5.c.
22  * Modified October 1995 by Erik Troan for RPM
23  */
24
25
26 #ifndef __MONO_DIGEST_H__
27 #define __MONO_DIGEST_H__
28
29 #include <config.h>
30 #include <glib.h>
31 #include <mono/utils/mono-publib.h>
32
33 G_BEGIN_DECLS
34
35 #if HAVE_COMMONCRYPTO_COMMONDIGEST_H
36
37 #include <CommonCrypto/CommonDigest.h>
38
39 #define MonoSHA1Context CC_SHA1_CTX
40 #define MonoMD5Context  CC_MD5_CTX
41
42 #else
43
44 typedef struct {
45         guint32 buf[4];
46         guint32 bits[2];
47         guchar in[64];
48         gint doByteReverse;
49 } MonoMD5Context;
50
51 #endif
52
53 MONO_API void mono_md5_get_digest (const guchar *buffer, gint buffer_size, guchar digest[16]);
54
55 /* use this one when speed is needed */
56 /* for use in provider code only */
57 MONO_API void mono_md5_get_digest_from_file (const gchar *filename, guchar digest[16]);
58
59 /* raw routines */
60 MONO_API void mono_md5_init   (MonoMD5Context *ctx);
61 MONO_API void mono_md5_update (MonoMD5Context *ctx, const guchar *buf, guint32 len);
62 MONO_API void mono_md5_final  (MonoMD5Context *ctx, guchar digest[16]);
63
64 #if !HAVE_COMMONCRYPTO_COMMONDIGEST_H
65
66 typedef struct {
67     guint32 state[5];
68     guint32 count[2];
69     unsigned char buffer[64];
70 } MonoSHA1Context;
71
72 #endif
73
74 MONO_API void mono_sha1_get_digest (const guchar *buffer, gint buffer_size, guchar digest [20]);
75 MONO_API void mono_sha1_get_digest_from_file (const gchar *filename, guchar digest [20]);
76
77 MONO_API void mono_sha1_init   (MonoSHA1Context* context);
78 MONO_API void mono_sha1_update (MonoSHA1Context* context, const guchar* data, guint32 len);
79 MONO_API void mono_sha1_final  (MonoSHA1Context* context, unsigned char digest[20]);
80
81 MONO_API void mono_digest_get_public_token (guchar* token, const guchar *pubkey, guint32 len);
82
83 G_END_DECLS
84 #endif  /* __MONO_DIGEST_H__ */