Removed
Link Here
|
1 |
--- common/md5.h.orig 2017-07-05 07:48:49 UTC |
2 |
+++ common/md5.h |
3 |
@@ -98,21 +98,21 @@ struct md5_ctx |
4 |
|
5 |
/* Initialize structure containing state of computation. |
6 |
(RFC 1321, 3.3: Step 3) */ |
7 |
-extern void __md5_init_ctx (struct md5_ctx *ctx) __THROW; |
8 |
+extern void __md5_init_ctx (struct md5_ctx *ctx) ; |
9 |
|
10 |
/* Starting with the result of former calls of this function (or the |
11 |
initialization function update the context for the next LEN bytes |
12 |
starting at BUFFER. |
13 |
It is necessary that LEN is a multiple of 64!!! */ |
14 |
extern void __md5_process_block (const void *buffer, size_t len, |
15 |
- struct md5_ctx *ctx) __THROW; |
16 |
+ struct md5_ctx *ctx) ; |
17 |
|
18 |
/* Starting with the result of former calls of this function (or the |
19 |
initialization function update the context for the next LEN bytes |
20 |
starting at BUFFER. |
21 |
It is NOT required that LEN is a multiple of 64. */ |
22 |
extern void __md5_process_bytes (const void *buffer, size_t len, |
23 |
- struct md5_ctx *ctx) __THROW; |
24 |
+ struct md5_ctx *ctx) ; |
25 |
|
26 |
/* Process the remaining bytes in the buffer and put result from CTX |
27 |
in first 16 bytes following RESBUF. The result is always in little |
28 |
@@ -121,7 +121,7 @@ extern void __md5_process_bytes (const void *buffer, s |
29 |
|
30 |
IMPORTANT: On some systems it is required that RESBUF is correctly |
31 |
aligned for a 32 bits value. */ |
32 |
-extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW; |
33 |
+extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) ; |
34 |
|
35 |
|
36 |
/* Put result from CTX in first 16 bytes following RESBUF. The result is |
37 |
@@ -130,19 +130,19 @@ extern void *__md5_finish_ctx (struct md5_ctx *ctx, vo |
38 |
|
39 |
IMPORTANT: On some systems it is required that RESBUF is correctly |
40 |
aligned for a 32 bits value. */ |
41 |
-extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW; |
42 |
+extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) ; |
43 |
|
44 |
|
45 |
/* Compute MD5 message digest for bytes read from STREAM. The |
46 |
resulting message digest number will be written into the 16 bytes |
47 |
beginning at RESBLOCK. */ |
48 |
-extern int __md5_stream (FILE *stream, void *resblock) __THROW; |
49 |
+extern int __md5_stream (FILE *stream, void *resblock) ; |
50 |
|
51 |
/* Compute MD5 message digest for LEN bytes beginning at BUFFER. The |
52 |
result is always in little endian byte order, so that a byte-wise |
53 |
output yields to the wanted ASCII representation of the message |
54 |
digest. */ |
55 |
extern void *__md5_buffer (const char *buffer, size_t len, |
56 |
- void *resblock) __THROW; |
57 |
+ void *resblock) ; |
58 |
|
59 |
#endif /* md5.h */ |