mirror of
https://github.com/modmii/Any-Region-Changer-ModMii-Edition.git
synced 2024-11-22 16:19:19 +01:00
14 lines
430 B
C
14 lines
430 B
C
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);
|