mirror of
https://github.com/reactos/ccache.git
synced 2025-02-17 09:37:31 +00:00
Remove unused 'void mdfour(unsigned char *out, const unsigned char *in, int n)'
This commit is contained in:
parent
936dc017bd
commit
5c6b15ddee
10
mdfour.c
10
mdfour.c
@ -187,13 +187,3 @@ void mdfour_result(struct mdfour *md, unsigned char *out)
|
||||
copy4(out+8, m->C);
|
||||
copy4(out+12, m->D);
|
||||
}
|
||||
|
||||
|
||||
void mdfour(unsigned char *out, const unsigned char *in, int n)
|
||||
{
|
||||
struct mdfour md;
|
||||
mdfour_begin(&md);
|
||||
mdfour_update(&md, in, n);
|
||||
mdfour_update(&md, NULL, 0);
|
||||
mdfour_result(&md, out);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user