You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
197 B
C

#include <stdint.h>
#include <stdio.h>
typedef struct SHA1_Result{
uint32_t h0;
uint32_t h1;
uint32_t h2;
uint32_t h3;
uint32_t h4;
} SHA1_Result;
SHA1_Result sha1file(char *filename);