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.

8 lines
155 B
C

#include "sha1.h"
int main(){
SHA1_Result r = sha1file("dummyFile");
printf("\nFinal result %x%x%x%x%x", r.h0, r.h1, r.h2, r.h3, r.h4);
return 0;
}