Open DonaldTsang opened 6 years ago
For libtomcrypt, it follows the format
md5_init(&md); md5_process(&md, in, in_len); md5_done(&md, out);
While for SPHLib,
sph_md5_init(&md); sph_md5(&md, in, in_len); sph_md5_done(&md, out);
So the syntax is nearly identical.
Also, for SPHLib, hashes are md5.c
headers are sph_md5.h
tests are test_md5.c
For future reference: http://www.saphir2.com/sphlib/