#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; }