Renamed RMD160 to RIPEMD160

This commit is contained in:
Paul Bakker 2014-01-22 13:35:29 +01:00
parent e4d47a655b
commit 61b699ed1b
16 changed files with 307 additions and 307 deletions
programs/test

View file

@ -34,7 +34,7 @@
#include "polarssl/md2.h"
#include "polarssl/md4.h"
#include "polarssl/md5.h"
#include "polarssl/rmd160.h"
#include "polarssl/ripemd160.h"
#include "polarssl/sha1.h"
#include "polarssl/sha256.h"
#include "polarssl/sha512.h"
@ -90,8 +90,8 @@ int main( int argc, char *argv[] )
return( ret );
#endif
#if defined(POLARSSL_RMD160_C)
if( ( ret = rmd160_self_test( v ) ) != 0 )
#if defined(POLARSSL_RIPEMD160_C)
if( ( ret = ripemd160_self_test( v ) ) != 0 )
return( ret );
#endif