mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-24 20:15:32 +00:00
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.
This commit is contained in:
parent
c49fbbf3eb
commit
8045cfbaa8
|
@ -57,7 +57,7 @@ typedef struct mbedtls_ripemd160_context
|
||||||
mbedtls_ripemd160_context;
|
mbedtls_ripemd160_context;
|
||||||
|
|
||||||
#else /* MBEDTLS_RIPEMD160_ALT */
|
#else /* MBEDTLS_RIPEMD160_ALT */
|
||||||
#include "ripemd160.h"
|
#include "ripemd160_alt.h"
|
||||||
#endif /* MBEDTLS_RIPEMD160_ALT */
|
#endif /* MBEDTLS_RIPEMD160_ALT */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue