mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-01 16:45:09 +01:00
19 lines
490 B
C
19 lines
490 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], const unsigned char buffer[64]);
|
|
void SHA1Init(SHA1_CTX* context);
|
|
void SHA1Update(SHA1_CTX* context, const 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
|
|
|