mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-03 19:20:18 +00:00
PBKDF2 -> PKCS5 in selftest.c
This commit is contained in:
parent
80955ee075
commit
486485bc07
@ -48,7 +48,7 @@
|
|||||||
#include "polarssl/rsa.h"
|
#include "polarssl/rsa.h"
|
||||||
#include "polarssl/x509.h"
|
#include "polarssl/x509.h"
|
||||||
#include "polarssl/xtea.h"
|
#include "polarssl/xtea.h"
|
||||||
#include "polarssl/pbkdf2.h"
|
#include "polarssl/pkcs5.h"
|
||||||
#include "polarssl/ecp.h"
|
#include "polarssl/ecp.h"
|
||||||
|
|
||||||
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
||||||
@ -106,7 +106,7 @@ int main( int argc, char *argv[] )
|
|||||||
return( ret );
|
return( ret );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(POLARSSL_SHA512_C)
|
#if defined(POLARSSL_SHAbkdf2512_C)
|
||||||
if( ( ret = sha512_self_test( v ) ) != 0 )
|
if( ( ret = sha512_self_test( v ) ) != 0 )
|
||||||
return( ret );
|
return( ret );
|
||||||
#endif
|
#endif
|
||||||
@ -171,8 +171,8 @@ int main( int argc, char *argv[] )
|
|||||||
return( ret );
|
return( ret );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(POLARSSL_PBKDF2_C)
|
#if defined(POLARSSL_PKCS5_C)
|
||||||
if( ( ret = pbkdf2_self_test( v ) ) != 0 )
|
if( ( ret = pkcs5_self_test( v ) ) != 0 )
|
||||||
return( ret );
|
return( ret );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user