mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-16 08:42:50 +00:00
- Fixed typo in MD4 define
This commit is contained in:
parent
1271d9df55
commit
fe1aea7877
@ -7,6 +7,10 @@ Changes
|
|||||||
* Tests requiring specific hashing algorithms now honor
|
* Tests requiring specific hashing algorithms now honor
|
||||||
the defines.
|
the defines.
|
||||||
|
|
||||||
|
Bug fixes
|
||||||
|
* Changed type in #ifdef in x509parse.c (found
|
||||||
|
by Eduardo)
|
||||||
|
|
||||||
= Version 0.12.0 released on 2009-07-28
|
= Version 0.12.0 released on 2009-07-28
|
||||||
Features
|
Features
|
||||||
* Added CMake makefiles as alternative to regular Makefiles.
|
* Added CMake makefiles as alternative to regular Makefiles.
|
||||||
|
@ -2157,7 +2157,7 @@ static void x509_hash( unsigned char *in, int len, int alg,
|
|||||||
case SIG_RSA_SHA224 : sha2( in, len, out, 1 ); break;
|
case SIG_RSA_SHA224 : sha2( in, len, out, 1 ); break;
|
||||||
case SIG_RSA_SHA256 : sha2( in, len, out, 0 ); break;
|
case SIG_RSA_SHA256 : sha2( in, len, out, 0 ); break;
|
||||||
#endif
|
#endif
|
||||||
#if defined(POLARSSL_SHA2_C)
|
#if defined(POLARSSL_SHA4_C)
|
||||||
case SIG_RSA_SHA384 : sha4( in, len, out, 1 ); break;
|
case SIG_RSA_SHA384 : sha4( in, len, out, 1 ); break;
|
||||||
case SIG_RSA_SHA512 : sha4( in, len, out, 0 ); break;
|
case SIG_RSA_SHA512 : sha4( in, len, out, 0 ); break;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user