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