source: rtems/c/src/libnetworking/rtems_webserver/md5.h @ d0d73ec

4.104.114.84.95
Last change on this file since d0d73ec was a6b4c0df, checked in by Joel Sherrill <joel.sherrill@…>, on 09/01/00 at 10:57:21

2000-08-30 Joel Sherrill <joel@…>

  • Merged version 2.1 of GoAhead? webserver. This update was submitted by Antti P Miettinen <antti.p.miettinen@…>.
  • NOTES, base64.c, ejIntrn.h, emfdb.c, emfdb.h, md5.h, md5c.c, um.c, um.h: New files.
  • wbase64.c: Removed.
  • Makefile.am, asp.c, balloc.c, default.c, ej.h, ejlex.c, ejparse.c, form.c, h.c, handler.c, mime.c, misc.c, ringq.c, rom.c, security.c, socket.c, sym.c, uemf.c, uemf.h, url.c, value.c, webcomp.c, webmain.c, webpage.c, webrom.c, webs.c, webs.h, websuemf.c, wsIntrn.h: Modified.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1/* MD5.H - header file for MD5C.C
2 */
3
4/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
5rights reserved.
6
7License to copy and use this software is granted provided that it
8is identified as the "RSA Data Security, Inc. MD5 Message-Digest
9Algorithm" in all material mentioning or referencing this software
10or this function.
11
12License is also granted to make and use derivative works provided
13that such works are identified as "derived from the RSA Data
14Security, Inc. MD5 Message-Digest Algorithm" in all material
15mentioning or referencing the derived work.
16
17RSA Data Security, Inc. makes no representations concerning either
18the merchantability of this software or the suitability of this
19software for any particular purpose. It is provided "as is"
20without express or implied warranty of any kind.
21
22These notices must be retained in any copies of any part of this
23documentation and/or software.
24 */
25
26#ifndef _h_MD5
27#define _h_MD5 1
28
29#ifndef UINT4
30#define UINT4 unsigned long
31#endif
32
33#ifndef POINTER
34#define POINTER unsigned char *
35#endif
36
37/* MD5 context. */
38typedef struct {
39  UINT4 state[4];                                   /* state (ABCD) */
40  UINT4 count[2];        /* number of bits, modulo 2^64 (lsb first) */
41  unsigned char buffer[64];                         /* input buffer */
42} MD5_CONTEXT;
43
44extern void MD5Init (MD5_CONTEXT *);
45extern void MD5Update (MD5_CONTEXT *, unsigned char *, unsigned int);
46extern void MD5Final (unsigned char [16], MD5_CONTEXT *);
47
48#endif /* _h_MD5 */
Note: See TracBrowser for help on using the repository browser.