Last change
on this file since 4082 was 2805, checked in by ansari, 20 years ago |
MAJ commentaires pour documentation doxygen - Reza 9 Juin 2005
|
File size:
496 bytes
|
Rev | Line | |
---|
[742] | 1 | #ifndef GNUMD5_H
|
---|
| 2 | #define GNUMD5_H
|
---|
| 3 |
|
---|
| 4 | #ifdef __cplusplus
|
---|
| 5 | extern "C" {
|
---|
| 6 | #endif
|
---|
| 7 |
|
---|
[2805] | 8 | /*! \cond */
|
---|
[742] | 9 | typedef struct {
|
---|
[1416] | 10 | uint_8 mem_align; /* To force memory alignment on SunOS 22/02/2001 */
|
---|
[1283] | 11 | uint_1 buf[64];
|
---|
[742] | 12 | uint_4 A,B,C,D; /* chaining variables */
|
---|
| 13 | uint_4 nblocks;
|
---|
| 14 | int count;
|
---|
| 15 | } MD5_CONTEXT;
|
---|
[2805] | 16 | /*! \endcond */
|
---|
[742] | 17 |
|
---|
| 18 | void
|
---|
| 19 | md5_init( MD5_CONTEXT *ctx );
|
---|
| 20 |
|
---|
| 21 | void
|
---|
| 22 | md5_write( MD5_CONTEXT *hd, uint_1 *inbuf, size_t inlen);
|
---|
| 23 |
|
---|
| 24 | void
|
---|
| 25 | md5_final( MD5_CONTEXT *hd );
|
---|
| 26 |
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 | #ifdef __cplusplus
|
---|
| 31 | }
|
---|
| 32 | #endif
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 |
|
---|
[802] | 36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.