mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-03 22:13:09 +02:00
85f89d5d09
which can provide remote access to your device, even if the ip and firewall settings are broken git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13738 3c298f89-4303-0410-b956-a3cf2f4a3e73
27 lines
497 B
C
27 lines
497 B
C
#ifndef T_SHA_H
|
|
#define T_SHA_H
|
|
|
|
#if !defined(P)
|
|
#ifdef __STDC__
|
|
#define P(x) x
|
|
#else
|
|
#define P(x) ()
|
|
#endif
|
|
#endif
|
|
|
|
#define SHA_DIGESTSIZE 20
|
|
|
|
typedef unsigned int uint32;
|
|
|
|
typedef struct {
|
|
uint32 state[5];
|
|
uint32 count[2];
|
|
unsigned char buffer[64];
|
|
} SHA1_CTX;
|
|
|
|
void SHA1Init P((SHA1_CTX* context));
|
|
void SHA1Update P((SHA1_CTX* context, const unsigned char* data, unsigned int len));
|
|
void SHA1Final P((unsigned char digest[20], SHA1_CTX* context));
|
|
|
|
#endif /* T_SHA_H */
|