SysCheck-ModMii-Edition/include/sha1.h
Joostinonline bc08e18949 -Added translations for "Homebrew Channel is not installed" message
-Improved timing between messages
-Added support for GC/Classic controllers, and multiple remotes
-Changed "HD Edition" to "HacksDen Edition"
-Minor code cleanup
2014-06-19 17:47:13 +00:00

16 lines
475 B
C

#ifndef __SHA1_H__
#define __SHA1_H__
typedef struct {
unsigned long state[5];
unsigned long count[2];
unsigned char buffer[64];
} SHA1_CTX;
void SHA1Transform(unsigned long state[5], unsigned char buffer[64]);
void SHA1Init(SHA1_CTX* context);
void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int len);
void SHA1Final(unsigned char digest[20], SHA1_CTX* context);
void SHA1(unsigned char *ptr, unsigned int size, unsigned char *outbuf);
#endif