3. The Core Verify Function (WIP)

Verification is done with the C function monolith_verify.

It will take in a sample size, and return an md5 hash. A mutable string buffer of the correct length must be supplied.

<<funcdefs>>=
void monolith_verify(monolith_d *m, int sz, char *md5);

Not yet been implemented. Sorry.

<<funcs>>=
void monolith_verify(monolith_d *m, int sz, char *md5)
{
    /* TODO: implement */
}



prev | home | next