feat: build proect for restproxy
This commit is contained in:
@@ -7,7 +7,12 @@
|
||||
|
||||
#include <string.h>
|
||||
#include "md5.h"
|
||||
#include "radius_md5.h"
|
||||
|
||||
#ifndef _T_BYTE
|
||||
#define _T_BYTE
|
||||
typedef unsigned char BYTE;
|
||||
#endif
|
||||
|
||||
const int blocksize = 64;
|
||||
const int hashsize = 16;
|
||||
|
||||
21
proxy_c/dba/src/include/md5.h
Normal file
21
proxy_c/dba/src/include/md5.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef SQUID_MD5_H
|
||||
#define SQUID_MD5_H
|
||||
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
|
||||
typedef struct SquidMD5Context {
|
||||
uint32_t buf[4];
|
||||
uint32_t bytes[2];
|
||||
uint32_t in[16];
|
||||
}SquidMD5_CTX;
|
||||
|
||||
void SquidMD5Init(struct SquidMD5Context *context);
|
||||
void SquidMD5Update(struct SquidMD5Context *context, const void *buf, unsigned len);
|
||||
void SquidMD5Final(uint8_t digest[16], struct SquidMD5Context *context);
|
||||
void SQUID_MD5Transform(uint32_t buf[4], uint32_t const in[16]); // void SquidMD5Transform(uint32_t buf[4], uint32_t const in[16]);
|
||||
|
||||
#define SQUID_MD5_DIGEST_LENGTH 16
|
||||
|
||||
#endif /** SQUID_MD5_H */
|
||||
90
proxy_c/dba/src/include/radius_md5.h
Normal file
90
proxy_c/dba/src/include/radius_md5.h
Normal file
@@ -0,0 +1,90 @@
|
||||
//md5.h
|
||||
/***********************************************************************/
|
||||
/** md5.h -- header file for implementation of MD5 **/
|
||||
/** RSA Data Security, Inc. MD5 Message-Digest Algorithm **/
|
||||
/** Created: 2/17/90 RLR **/
|
||||
/** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version **/
|
||||
/** Revised (for MD5): RLR 4/27/91 **/
|
||||
/** -- G modified to have y&~z instead of y&z **/
|
||||
/** -- FF, GG, HH modified to add in last register done **/
|
||||
/** -- Access pattern: round 2 works mod 5, round 3 works mod 3 **/
|
||||
/** -- distinct additive constant for each step **/
|
||||
/** -- round 4 added, working mod 7 **/
|
||||
/***********************************************************************/
|
||||
|
||||
/***********************************************************************/
|
||||
/** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. **/
|
||||
/** **/
|
||||
/** License to copy and use this software is granted provided that **/
|
||||
/** it is identified as the "RSA Data Security, Inc. MD5 Message- **/
|
||||
/** Digest Algorithm" in all material mentioning or referencing this **/
|
||||
/** software or this function. **/
|
||||
/** **/
|
||||
/** License is also granted to make and use derivative works **/
|
||||
/** provided that such works are identified as "derived from the RSA **/
|
||||
/** Data Security, Inc. MD5 Message-Digest Algorithm" in all **/
|
||||
/** material mentioning or referencing the derived work. **/
|
||||
/** **/
|
||||
/** RSA Data Security, Inc. makes no representations concerning **/
|
||||
/** either the merchantability of this software or the suitability **/
|
||||
/** of this software for any particular purpose. It is provided "as **/
|
||||
/** is" without express or implied warranty of any kind. **/
|
||||
/** **/
|
||||
/** These notices must be retained in any copies of any part of this **/
|
||||
/** documentation and/or software. **/
|
||||
/***********************************************************************/
|
||||
|
||||
#ifndef _RADIUS_MD5_H
|
||||
#define _RADIUS_MD5_H
|
||||
|
||||
#ifndef _T_BYTE
|
||||
#define _T_BYTE
|
||||
typedef unsigned char BYTE;
|
||||
#endif
|
||||
|
||||
/* typedef a 32-bit type */
|
||||
//typedef unsigned long int UINT4;
|
||||
typedef unsigned int UINT4;
|
||||
|
||||
#define S11 7
|
||||
#define S12 12
|
||||
#define S13 17
|
||||
#define S14 22
|
||||
|
||||
#define S21 5
|
||||
#define S22 9
|
||||
#define S23 14
|
||||
#define S24 20
|
||||
|
||||
#define S31 4
|
||||
#define S32 11
|
||||
#define S33 16
|
||||
#define S34 23
|
||||
|
||||
#define S41 6
|
||||
#define S42 10
|
||||
#define S43 15
|
||||
#define S44 21
|
||||
|
||||
/* Data structure for MD5 (Message-Digest) computation */
|
||||
typedef struct _MD5_CTX
|
||||
{
|
||||
UINT4 i[2]; /* number of _bits_ handled mod 2^64 */
|
||||
UINT4 buf[4]; /* scratch buffer */
|
||||
unsigned char in[64]; /* input buffer */
|
||||
unsigned char digest[16]; /* actual digest after MD5Final call */
|
||||
} MD5_CTX;
|
||||
|
||||
void radius_MD5Init (MD5_CTX *);
|
||||
void radius_MD5Update (MD5_CTX *,unsigned char *,unsigned int);
|
||||
void radius_MD5Final (MD5_CTX *);
|
||||
void radius_MD5Transform(UINT4 *,UINT4 *);
|
||||
void radius_get_md5_str(char *dest, char *org, int len);
|
||||
void radius_get_md5_hex(char *dest, char *org, int len);
|
||||
void radius_get_hmac_md5_hex(BYTE *dest, BYTE *org, int org_len, BYTE *key, int key_len);
|
||||
|
||||
#endif
|
||||
/***********************************************************************/
|
||||
/** End of md5.h **/
|
||||
/***********************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user