annotate libdvdread/md5.h @ 367:1274107d0eac src

moved dvdread to libdvdread; it's the first step for the separation of the lib from dvdnav
author nicodvb
date Sat, 31 May 2008 12:29:19 +0000
parents dvdread/md5.h@9b1b740e3fc9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
225
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
1 /* md5.h - Declaration of functions and data types used for MD5 sum
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
2 computing library functions.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
3 Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
4 NOTE: The canonical source of this file is maintained with the GNU C
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
5 Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
6
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
7 This program is free software; you can redistribute it and/or modify it
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
10 later version.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
11
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
12 This program is distributed in the hope that it will be useful,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
15 GNU General Public License for more details.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
16
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
18 along with this program; if not, write to the Free Software Foundation,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
19 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
20
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
21 #ifndef _MD5_H
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
22 #define _MD5_H 1
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
23
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
24 #include <stdio.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
25
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
26 #if defined HAVE_LIMITS_H || _LIBC
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
27 # include <limits.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
28 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
29
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
30 /* The following contortions are an attempt to use the C preprocessor
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
31 to determine an unsigned integral type that is 32 bits wide. An
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
32 alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
33 doing that would require that the configure script compile and *run*
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
34 the resulting executable. Locally running cross-compiled executables
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
35 is usually not possible. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
36
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
37 #ifdef _LIBC
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
38 # include <sys/types.h>
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
39 typedef u_int32_t md5_uint32;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
40 #else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
41 # if defined __STDC__ && __STDC__
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
42 # define UINT_MAX_32_BITS 4294967295U
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
43 # else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
44 # define UINT_MAX_32_BITS 0xFFFFFFFF
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
45 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
46
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
47 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
48 This should be valid for all systems GNU cares about because
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
49 that doesn't include 16-bit systems, and only modern systems
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
50 (that certainly have <limits.h>) have 64+-bit integral types. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
51
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
52 # ifndef UINT_MAX
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
53 # define UINT_MAX UINT_MAX_32_BITS
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
54 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
55
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
56 # if UINT_MAX == UINT_MAX_32_BITS
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
57 typedef unsigned int md5_uint32;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
58 # else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
59 # if USHRT_MAX == UINT_MAX_32_BITS
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
60 typedef unsigned short md5_uint32;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
61 # else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
62 # if ULONG_MAX == UINT_MAX_32_BITS
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
63 typedef unsigned long md5_uint32;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
64 # else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
65 /* The following line is intended to evoke an error.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
66 Using #error is not portable enough. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
67 "Cannot determine unsigned 32-bit data type."
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
68 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
69 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
70 # endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
71 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
72
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
73 #undef __P
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
74 #if defined (__STDC__) && __STDC__
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
75 #define __P(x) x
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
76 #else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
77 #define __P(x) ()
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
78 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
79
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
80 /* Structure to save state of computation between the single steps. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
81 struct md5_ctx
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
82 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
83 md5_uint32 A;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
84 md5_uint32 B;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
85 md5_uint32 C;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
86 md5_uint32 D;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
87
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
88 md5_uint32 total[2];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
89 md5_uint32 buflen;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
90 char buffer[128];
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
91 };
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
92
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
93 /*
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
94 * The following three functions are build up the low level used in
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
95 * the functions `md5_stream' and `md5_buffer'.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
96 */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
97
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
98 /* Initialize structure containing state of computation.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
99 (RFC 1321, 3.3: Step 3) */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
100 extern void md5_init_ctx __P ((struct md5_ctx *ctx));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
101
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
102 /* Starting with the result of former calls of this function (or the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
103 initialization function update the context for the next LEN bytes
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
104 starting at BUFFER.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
105 It is necessary that LEN is a multiple of 64!!! */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
106 extern void md5_process_block __P ((const void *buffer, size_t len,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
107 struct md5_ctx *ctx));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
108
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
109 /* Starting with the result of former calls of this function (or the
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
110 initialization function update the context for the next LEN bytes
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
111 starting at BUFFER.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
112 It is NOT required that LEN is a multiple of 64. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
113 extern void md5_process_bytes __P ((const void *buffer, size_t len,
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
114 struct md5_ctx *ctx));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
115
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
116 /* Process the remaining bytes in the buffer and put result from CTX
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
117 in first 16 bytes following RESBUF. The result is always in little
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
118 endian byte order, so that a byte-wise output yields to the wanted
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
119 ASCII representation of the message digest.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
120
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
121 IMPORTANT: On some systems it is required that RESBUF be correctly
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
122 aligned for a 32 bits value. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
123 extern void *md5_finish_ctx __P ((struct md5_ctx *ctx, void *resbuf));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
124
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
125
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
126 /* Put result from CTX in first 16 bytes following RESBUF. The result is
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
127 always in little endian byte order, so that a byte-wise output yields
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
128 to the wanted ASCII representation of the message digest.
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
129
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
130 IMPORTANT: On some systems it is required that RESBUF is correctly
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
131 aligned for a 32 bits value. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
132 extern void *md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
133
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
134
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
135 /* Compute MD5 message digest for bytes read from STREAM. The
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
136 resulting message digest number will be written into the 16 bytes
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
137 beginning at RESBLOCK. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
138 extern int md5_stream __P ((FILE *stream, void *resblock));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
139
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
140 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
141 result is always in little endian byte order, so that a byte-wise
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
142 output yields to the wanted ASCII representation of the message
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
143 digest. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
144 extern void *md5_buffer __P ((const char *buffer, size_t len, void *resblock));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
145
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
146 /* The following is from gnupg-1.0.2's cipher/bithelp.h. */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
147 /* Rotate a 32 bit integer by n bytes */
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
148 #if defined __GNUC__ && defined __i386__
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
149 static inline md5_uint32
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
150 rol(md5_uint32 x, int n)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
151 {
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
152 __asm__("roll %%cl,%0"
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
153 :"=r" (x)
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
154 :"0" (x),"c" (n));
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
155 return x;
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
156 }
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
157 #else
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
158 # define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
159 #endif
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
160
9b1b740e3fc9 big build system changes
mroi
parents:
diff changeset
161 #endif