Skip to content

Commit 697c68c

Browse files
committed
Enable ALT implementations of ripemd160
In configurations wanting an alternative ripemd160 implementation, We were including the ordinary Mbed Crypto ripemd160.h instead of the user-provided ripemd160_alt.h. Use the user-provided header instead.
1 parent 203fdf7 commit 697c68c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/mbedtls/ripemd160.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ typedef struct mbedtls_ripemd160_context
5757
mbedtls_ripemd160_context;
5858

5959
#else /* MBEDTLS_RIPEMD160_ALT */
60-
#include "ripemd160.h"
60+
#include "ripemd160_alt.h"
6161
#endif /* MBEDTLS_RIPEMD160_ALT */
6262

6363
/**

0 commit comments

Comments
 (0)