⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 md5.h

📁 自己开发基于P2P通讯的网络服务器
💻 H
字号:
/* * md5.h        Structures and prototypes for md5. * * Version:     $Id: md5.h,v 1.13 2004/05/28 06:27:53 phampson Exp $ * License:		LGPL, but largely derived from a public domain source. * */#ifndef _LRAD_MD5_H#define _LRAD_MD5_H
#ifndef WIN32
#include <inttypes.h>#include <sys/types.h>#include <stdint.h>
#else

typedef signed char             int8_t;
typedef short int               int16_t;
typedef int                     int32_t;

/* Unsigned.  */
typedef unsigned char           uint8_t;
typedef unsigned short int      uint16_t;
typedef unsigned int            uint32_t;

#endif

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <string.h>/* *  FreeRADIUS defines to ensure globally unique MD5 function names, *  so that we don't pick up vendor-specific broken MD5 libraries. */#define MD5_CTX		librad_MD5_CTX#define MD5Init		librad_MD5Init#define MD5Update	librad_MD5Update#define MD5Final	librad_MD5Final#define MD5Transform	librad_MD5Transform/*  The below was retrieved from *  http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/crypto/md5.h?rev=1.1 *  With the following changes: uint64_t => uint32_t[2] *  Commented out #include <sys/cdefs.h> *  Commented out the __BEGIN and __END _DECLS, and the __attributes. *//* * This code implements the MD5 message-digest algorithm. * The algorithm is due to Ron Rivest.  This code was * written by Colin Plumb in 1993, no copyright is claimed. * This code is in the public domain; do with it what you wish. * * Equivalent code is available from RSA Data Security, Inc. * This code has been tested against that, and is equivalent, * except that you don't need to include two pages of legalese * with every copy. */#define	MD5_BLOCK_LENGTH		64#define	MD5_DIGEST_LENGTH		16typedef struct MD5Context {	uint32_t state[4];			/* state */	uint32_t count[2];			/* number of bits, mod 2^64 */	uint8_t buffer[MD5_BLOCK_LENGTH];	/* input buffer */} MD5_CTX;/* include <sys/cdefs.h> *//* __BEGIN_DECLS */extern void	 MD5Init(MD5_CTX *);extern void	 MD5Update(MD5_CTX *, const uint8_t *, size_t)/*		__attribute__((__bounded__(__string__,2,3)))*/;extern void	 MD5Final(uint8_t [MD5_DIGEST_LENGTH], MD5_CTX *)/*		__attribute__((__bounded__(__minbytes__,1,MD5_DIGEST_LENGTH)))*/;extern void	 MD5Transform(uint32_t [4], const uint8_t [MD5_BLOCK_LENGTH])/*		__attribute__((__bounded__(__minbytes__,1,4)))*//*		__attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)))*/;extern void     hmac_md5(const unsigned char *text, int text_len,
			const unsigned char *key, int key_len,
			unsigned char *digest);
/* __END_DECLS */
#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* _LRAD_MD5_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -