source: Sophya/trunk/SophyaLib/BaseTools/gnumd5.h@ 3520

Last change on this file since 3520 was 2805, checked in by ansari, 20 years ago

MAJ commentaires pour documentation doxygen - Reza 9 Juin 2005

File size: 496 bytes
Line 
1#ifndef GNUMD5_H
2#define GNUMD5_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8/*! \cond */
9typedef struct {
10 uint_8 mem_align; /* To force memory alignment on SunOS 22/02/2001 */
11 uint_1 buf[64];
12 uint_4 A,B,C,D; /* chaining variables */
13 uint_4 nblocks;
14 int count;
15} MD5_CONTEXT;
16/*! \endcond */
17
18void
19md5_init( MD5_CONTEXT *ctx );
20
21void
22md5_write( MD5_CONTEXT *hd, uint_1 *inbuf, size_t inlen);
23
24void
25md5_final( MD5_CONTEXT *hd );
26
27
28
29
30#ifdef __cplusplus
31}
32#endif
33
34
35
36#endif
Note: See TracBrowser for help on using the repository browser.