Gilles Peskine | cf4d9f9 | 2022-06-30 17:07:47 +0200 | [diff] [blame] | 1 | Security |
| 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. |
| 6 | Requirement changes |
| 7 | * The library will no longer compile out of the box on a platform without |
Paul Elliott | dfb5da2 | 2022-07-01 16:32:14 +0100 | [diff] [blame] | 8 | 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 | |