Dmitry Baryshkov dbaryshkov@gmail.com writes:
Add a testuite for Streebog hash function. Test vectors are based on RFC 6986.
Hi, tried this out on top of the v3 patch, but doesn't quite work as is. See below.
--- /dev/null +++ b/testsuite/streebog-test.c @@ -0,0 +1,90 @@ +#include "testutils.h" +#include "streebog.h"
nettle_streebog256 and nettle_streebog512 are undeclared after these includes. Declarations should go in nettle-meta.h (which this file then needs to include), but that was missing in the previous patch which added streebog-meta.c.
Regards, /Niels