mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:05:40 +01:00
md_list() starting with strongest hash
This commit is contained in:
parent
6697b6c13b
commit
bd77254b18
@ -30,6 +30,7 @@ Changes
|
|||||||
required on some platforms (e.g. OpenBSD)
|
required on some platforms (e.g. OpenBSD)
|
||||||
* Migrate zeroizing of data to polarssl_zeroize() instead of memset()
|
* Migrate zeroizing of data to polarssl_zeroize() instead of memset()
|
||||||
against unwanted compiler optimizations
|
against unwanted compiler optimizations
|
||||||
|
* md_list() now returns hashes strongest first
|
||||||
|
|
||||||
Bugfix
|
Bugfix
|
||||||
* Fix in debug_print_msg()
|
* Fix in debug_print_msg()
|
||||||
|
44
library/md.c
44
library/md.c
@ -52,24 +52,9 @@ static void polarssl_zeroize( void *v, size_t n ) {
|
|||||||
|
|
||||||
static const int supported_digests[] = {
|
static const int supported_digests[] = {
|
||||||
|
|
||||||
#if defined(POLARSSL_MD2_C)
|
#if defined(POLARSSL_SHA512_C)
|
||||||
POLARSSL_MD_MD2,
|
POLARSSL_MD_SHA384,
|
||||||
#endif
|
POLARSSL_MD_SHA512,
|
||||||
|
|
||||||
#if defined(POLARSSL_MD4_C)
|
|
||||||
POLARSSL_MD_MD4,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(POLARSSL_MD5_C)
|
|
||||||
POLARSSL_MD_MD5,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(POLARSSL_RIPEMD160_C)
|
|
||||||
POLARSSL_MD_RIPEMD160,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(POLARSSL_SHA1_C)
|
|
||||||
POLARSSL_MD_SHA1,
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(POLARSSL_SHA256_C)
|
#if defined(POLARSSL_SHA256_C)
|
||||||
@ -77,12 +62,27 @@ static const int supported_digests[] = {
|
|||||||
POLARSSL_MD_SHA256,
|
POLARSSL_MD_SHA256,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(POLARSSL_SHA512_C)
|
#if defined(POLARSSL_SHA1_C)
|
||||||
POLARSSL_MD_SHA384,
|
POLARSSL_MD_SHA1,
|
||||||
POLARSSL_MD_SHA512,
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
0
|
#if defined(POLARSSL_RIPEMD160_C)
|
||||||
|
POLARSSL_MD_RIPEMD160,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(POLARSSL_MD5_C)
|
||||||
|
POLARSSL_MD_MD5,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(POLARSSL_MD4_C)
|
||||||
|
POLARSSL_MD_MD4,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(POLARSSL_MD2_C)
|
||||||
|
POLARSSL_MD_MD2,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
POLARSSL_MD_NONE
|
||||||
};
|
};
|
||||||
|
|
||||||
const int *md_list( void )
|
const int *md_list( void )
|
||||||
|
Loading…
Reference in New Issue
Block a user