aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMinos Galanakis <minos.galanakis@arm.com>2021-12-09 15:06:16 +0000
committerMinos Galanakis <minos.galanakis@arm.com>2021-12-09 15:06:16 +0000
commitd7547fcb5d7ed6a983fc1990a8950e9fac946808 (patch)
treee17987678b460cbbe45fa6b309493bcab41f8b11 /README.md
parentc42cadb54a7bd9b26837abce449599dd7e429d5b (diff)
downloadmbedtls-d7547fcb5d7ed6a983fc1990a8950e9fac946808.zip
mbedtls-d7547fcb5d7ed6a983fc1990a8950e9fac946808.tar.gz
mbedtls-d7547fcb5d7ed6a983fc1990a8950e9fac946808.tar.bz2
readme: Addressed review comments
Signed-off-by: Minos Galanakis <minos.galanakis@arm.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9f1e43a..f2e810e 100644
--- a/README.md
+++ b/README.md
@@ -254,12 +254,11 @@ Mbed TLS can be ported to many different architectures, OS's and platforms. Befo
Mbed TLS is mostly written in portable C99; however, it has a few platform requirements that go beyond the standard, but are met by most modern architectures:
-- bytes must be 8 bits
-- all-bits-zero must be a valid representation of the NULL pointer
-- signed integers must be represented using two's complement
-- integers must not have padding bits in their representation
-- `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.
+- Bytes must be 8 bits.
+- `all-bits-zero` must be a valid representation of a null pointer.
+- Signed integers must be represented using two's complement.
+- `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.
PSA cryptography API
--------------------