ripemd debug
This commit is contained in:
parent
bc48c83147
commit
42f3ec73eb
1
.gitignore
vendored
1
.gitignore
vendored
@ -18,6 +18,7 @@ build-aux/
|
||||
rpm/spec
|
||||
stamp-h
|
||||
cyassl/options.h
|
||||
wolfssl/options.h
|
||||
libtool.m4
|
||||
aclocal.m4
|
||||
aminclude.am
|
||||
|
@ -6079,10 +6079,10 @@ static INLINE void RmdRounds(int rounds, const byte* data, int sz)
|
||||
RipeMd ripemd;
|
||||
int i;
|
||||
|
||||
InitRipeMd(&ripemd);
|
||||
wc_InitRipeMd(&ripemd);
|
||||
|
||||
for (i = 0; i < rounds; i++)
|
||||
RipeMdUpdate(&ripemd, data, sz);
|
||||
wc_RipeMdUpdate(&ripemd, data, sz);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -24,15 +24,15 @@
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <cyassl/ctaocrypt/settings.h>
|
||||
#include <wolfssl/wolfcrypt/settings.h>
|
||||
|
||||
#ifdef WOLFSSL_RIPEMD
|
||||
|
||||
#include <cyassl/ctaocrypt/ripemd.h>
|
||||
#include <wolfssl/wolfcrypt/ripemd.h>
|
||||
#ifdef NO_INLINE
|
||||
#include <cyassl/ctaocrypt/misc.h>
|
||||
#include <wolfssl/wolfcrypt/misc.h>
|
||||
#else
|
||||
#include <ctaocrypt/src/misc.c>
|
||||
#include <wolfcrypt/src/misc.c>
|
||||
#endif
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user