OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [net/] [snmp/] [lib/] [current/] [include/] [md5.h] - Blame information for rev 844

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//      ./lib/current/include/md5.h
4
//
5
//
6
//==========================================================================
7
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
8
// -------------------------------------------                              
9
// This file is part of eCos, the Embedded Configurable Operating System.   
10
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
11
//
12
// eCos is free software; you can redistribute it and/or modify it under    
13
// the terms of the GNU General Public License as published by the Free     
14
// Software Foundation; either version 2 or (at your option) any later      
15
// version.                                                                 
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT      
18
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
20
// for more details.                                                        
21
//
22
// You should have received a copy of the GNU General Public License        
23
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
24
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
25
//
26
// As a special exception, if other files instantiate templates or use      
27
// macros or inline functions from this file, or you compile this file      
28
// and link it with other works to produce a work based on this file,       
29
// this file does not by itself cause the resulting work to be covered by   
30
// the GNU General Public License. However the source code for this file    
31
// must still be made available in accordance with section (3) of the GNU   
32
// General Public License v2.                                               
33
//
34
// This exception does not invalidate any other reasons why a work based    
35
// on this file might be covered by the GNU General Public License.         
36
// -------------------------------------------                              
37
// ####ECOSGPLCOPYRIGHTEND####                                              
38
//####UCDSNMPCOPYRIGHTBEGIN####
39
//
40
// -------------------------------------------
41
//
42
// Portions of this software may have been derived from the UCD-SNMP
43
// project,  <http://ucd-snmp.ucdavis.edu/>  from the University of
44
// California at Davis, which was originally based on the Carnegie Mellon
45
// University SNMP implementation.  Portions of this software are therefore
46
// covered by the appropriate copyright disclaimers included herein.
47
//
48
// The release used was version 4.1.2 of May 2000.  "ucd-snmp-4.1.2"
49
// -------------------------------------------
50
//
51
//####UCDSNMPCOPYRIGHTEND####
52
//==========================================================================
53
//#####DESCRIPTIONBEGIN####
54
//
55
// Author(s):    hmt
56
// Contributors: hmt
57
// Date:         2000-05-30
58
// Purpose:      Port of UCD-SNMP distribution to eCos.
59
// Description:  
60
//              
61
//
62
//####DESCRIPTIONEND####
63
//
64
//==========================================================================
65
/********************************************************************
66
       Copyright 1989, 1991, 1992 by Carnegie Mellon University
67
 
68
                          Derivative Work -
69
Copyright 1996, 1998, 1999, 2000 The Regents of the University of California
70
 
71
                         All Rights Reserved
72
 
73
Permission to use, copy, modify and distribute this software and its
74
documentation for any purpose and without fee is hereby granted,
75
provided that the above copyright notice appears in all copies and
76
that both that copyright notice and this permission notice appear in
77
supporting documentation, and that the name of CMU and The Regents of
78
the University of California not be used in advertising or publicity
79
pertaining to distribution of the software without specific written
80
permission.
81
 
82
CMU AND THE REGENTS OF THE UNIVERSITY OF CALIFORNIA DISCLAIM ALL
83
WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED
84
WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL CMU OR
85
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY SPECIAL,
86
INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
87
FROM THE LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
88
CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
89
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
90
*********************************************************************/
91
/*
92
** **************************************************************************
93
** md5.h -- Header file for implementation of MD5 Message Digest Algorithm **
94
** Updated: 2/13/90 by Ronald L. Rivest                                    **
95
** (C) 1990 RSA Data Security, Inc.                                        **
96
** **************************************************************************
97
*/
98
 
99
#ifndef MD5_H
100
#define MD5_H
101
 
102
#ifdef __cplusplus
103
extern "C" {
104
#endif
105
 
106
 
107
/* MDstruct is the data structure for a message digest computation.
108
*/
109
typedef struct {
110
  unsigned int buffer[4];    /* Holds 4-word result of MD computation */
111
  unsigned char count[8];    /* Number of bits processed so far */
112
  unsigned int done;         /* Nonzero means MD computation finished */
113
} MDstruct, *MDptr;
114
 
115
/* MDbegin(MD)
116
** Input: MD -- an MDptr
117
** Initialize the MDstruct prepatory to doing a message digest computation.
118
*/
119
extern void MDbegin (MDptr);
120
 
121
/* MDupdate(MD,X,count)
122
** Input: MD -- an MDptr
123
**        X -- a pointer to an array of unsigned characters.
124
**        count -- the number of bits of X to use (an unsigned int).
125
** Updates MD using the first ``count'' bits of X.
126
** The array pointed to by X is not modified.
127
** If count is not a multiple of 8, MDupdate uses high bits of last byte.
128
** This is the basic input routine for a user.
129
** The routine terminates the MD computation when count < 512, so
130
** every MD computation should end with one call to MDupdate with a
131
** count less than 512.  Zero is OK for a count.
132
*/
133
extern int MDupdate (MDptr, unsigned char *, unsigned int);
134
 
135
/* MDprint(MD)
136
** Input: MD -- an MDptr
137
** Prints message digest buffer MD as 32 hexadecimal digits.
138
** Order is from low-order byte of buffer[0] to high-order byte of buffer[3].
139
** Each byte is printed with high-order hexadecimal digit first.
140
*/
141
extern void MDprint (MDptr);
142
 
143
int MDchecksum(u_char *data, size_t len, u_char *mac, size_t maclen);
144
int  MDsign(u_char *data, size_t len, u_char *mac, size_t maclen,
145
            u_char *secret, size_t secretlen);
146
void MDget(MDstruct *MD, u_char *buf, size_t buflen);
147
 
148
/*
149
** End of md5.h
150
****************************(cut)*****************************************/
151
#ifdef __cplusplus
152
}
153
#endif
154
 
155
#endif /* MD5_H */
156
 

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.