blob: d14cd18aa2feb5e6a8c1b5e42bb2c056b960b51d [file] [log] [blame]
Gilles Peskinecf4d9f92022-06-30 17:07:47 +02001Security
2 * Add the platform function mbedtls_setbuf() to allow buffering to be
3 disabled on stdio files, to stop secrets loaded from said files being
4 potentially left in memory after file operations. Reported by
5 Glenn Strauss.
6Requirement changes
7 * The library will no longer compile out of the box on a platform without
Paul Elliottdfb5da22022-07-01 16:32:14 +01008 setbuf(). If your platform does not have setbuf(), you can configure an
9 alternative function by enabling MBEDTLS_PLATFORM_SETBUF_ALT or
10 MBEDTLS_PLATFORM_SETBUF_MACRO.
11