ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/sys/sys/md5.h
(Generate patch)

Comparing trunk/sys/sys/md5.h (file contents):
Revision 6458 by laffer1, Wed Dec 4 03:37:56 2013 UTC vs.
Revision 12373 by laffer1, Sun Feb 16 22:29:26 2020 UTC

# Line 1 | Line 1
1 + /* $MidnightBSD$ */
2   /* MD5.H - header file for MD5C.C
3 < * $MidnightBSD$
3 > * $FreeBSD: stable/11/sys/sys/md5.h 310372 2016-12-21 18:42:04Z emaste $
4   */
5  
6   /*-
# Line 44 | Line 45 | typedef struct MD5Context {
45   __BEGIN_DECLS
46   void   MD5Init (MD5_CTX *);
47   void   MD5Update (MD5_CTX *, const void *, unsigned int);
48 < void   MD5Final (unsigned char [16], MD5_CTX *);
48 > void   MD5Final (unsigned char[__min_size(MD5_DIGEST_LENGTH)], MD5_CTX *);
49 > #ifndef _KERNEL
50   char * MD5End(MD5_CTX *, char *);
51 + char * MD5Fd(int, char *);
52 + char * MD5FdChunk(int, char *, off_t, off_t);
53   char * MD5File(const char *, char *);
54   char * MD5FileChunk(const char *, char *, off_t, off_t);
55   char * MD5Data(const void *, unsigned int, char *);
56 + #endif
57   __END_DECLS
58   #endif /* _SYS_MD5_H_ */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines