aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>2023-07-11 11:14:15 +0200
committerManuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>2023-07-11 11:14:15 +0200
commit1937cf8143bb9465b2d696aafbb93526d4f1e98c (patch)
tree2eda8dc3e3a0220d733d68022d6a783facf1d34f /docs
parentc97775162ec82841e1884a787a29731cbeb22b24 (diff)
downloadmbedtls-1937cf8143bb9465b2d696aafbb93526d4f1e98c.zip
mbedtls-1937cf8143bb9465b2d696aafbb93526d4f1e98c.tar.gz
mbedtls-1937cf8143bb9465b2d696aafbb93526d4f1e98c.tar.bz2
Improve wording & fix a typo
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/driver-only-builds.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/driver-only-builds.md b/docs/driver-only-builds.md
index 1c49982..7263cfa 100644
--- a/docs/driver-only-builds.md
+++ b/docs/driver-only-builds.md
@@ -118,10 +118,11 @@ the following is enabled:
- `PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE` - support for deterministic
derivation of an ECC keypair with `psa_key_derivation_output_key()`.
-Note: when one of the above options is enabled, you can still `MBEDTLS_ECP_C`
-in `mbedtls_config.h`, and it will still result in some code size savings, but
-not as much as when none of these are enabled, as a subset of `ecp.c` will
-still be included in the build in order to support these.
+Note: when any of the above options is enabled, a subset of `ecp.c` will
+automatically be included in the build in order to support it. Therefore
+you can still disable `MBEDTLS_ECP_C` in `mbedtls_config.h` and this will
+result in some code size savings, but not as much as when none of the
+above features are enabled.
We do have plans to support each of these with `ecp.c` fully removed in the
future, however no established timeline. If you're interested, please let us
@@ -129,7 +130,7 @@ know, so we can take it into consideration in our planning.
### Limitations regarding restartable / interruptible ECC operations
-At the moment, the is not driver support for interruptible operations
+At the moment, there is not driver support for interruptible operations
(see `psa_sign_hash_start()` + `psa_sign_hash_complete()` etc.) so as a
consequence these are not supported in builds without `MBEDTLS_ECDSA_C`.