From 37296a413ae093c0514a520839fead5670403507 Mon Sep 17 00:00:00 2001 From: Dave Rodgman Date: Fri, 10 Feb 2023 15:39:22 +0000 Subject: [PATCH] Document SIZE_MAX requirement in README.md Signed-off-by: Dave Rodgman --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7b45a1f15..f4bf4e142 100644 --- a/README.md +++ b/README.md @@ -264,6 +264,7 @@ Mbed TLS is mostly written in portable C99; however, it has a few platform requi - `int` and `size_t` must be at least 32 bits wide. - The types `uint8_t`, `uint16_t`, `uint32_t` and their signed equivalents must be available. - Mixed-endian platforms are not supported. +- SIZE_MAX must be at least as big as INT_MAX and UINT_MAX. PSA cryptography API --------------------