mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-10 19:35:27 +00:00
Merge remote-tracking branch 'public/pr/1186' into mbedtls-1.3
* public/pr/1186: Fix build without MBEDTLS_FS_IO
This commit is contained in:
commit
ccbbfdf0d8
|
@ -61,12 +61,15 @@
|
|||
#define polarssl_free free
|
||||
#endif
|
||||
|
||||
#if defined(POLARSSL_FS_IO)
|
||||
#if defined(POLARSSL_FS_IO) || \
|
||||
defined(POLARSSL_PKCS12_C) || defined(POLARSSL_PKCS5_C)
|
||||
/* Implementation that should never be optimized out by the compiler */
|
||||
static void polarssl_zeroize( void *v, size_t n ) {
|
||||
volatile unsigned char *p = v; while( n-- ) *p++ = 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(POLARSSL_FS_IO)
|
||||
/*
|
||||
* Load all data from a file into a given buffer.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue