aboutsummaryrefslogtreecommitdiff
path: root/configs/config-psa-crypto.h
diff options
context:
space:
mode:
authorGilles Peskine <Gilles.Peskine@arm.com>2020-02-26 19:52:06 +0100
committerRonald Cron <ronald.cron@arm.com>2020-03-19 14:23:45 +0100
commit1174db5bac1e4ca0298d6b835e3877490271f777 (patch)
tree848443f3abb0d5f17c67e28ba65c2fe03deee3cd /configs/config-psa-crypto.h
parentd40f0070ec306f4f432d5bfb21686142ad359703 (diff)
downloadmbedtls-1174db5bac1e4ca0298d6b835e3877490271f777.zip
mbedtls-1174db5bac1e4ca0298d6b835e3877490271f777.tar.gz
mbedtls-1174db5bac1e4ca0298d6b835e3877490271f777.tar.bz2
Revert "ecp: Remove dependency on TLS and X.509"
This reverts commit de0a41b716ae4d9e938236771d49a880480eb66e.
Diffstat (limited to 'configs/config-psa-crypto.h')
-rw-r--r--configs/config-psa-crypto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/configs/config-psa-crypto.h b/configs/config-psa-crypto.h
index f007cee..f42ada6 100644
--- a/configs/config-psa-crypto.h
+++ b/configs/config-psa-crypto.h
@@ -726,11 +726,11 @@
* Enable "non-blocking" ECC operations that can return early and be resumed.
*
* This allows various functions to pause by returning
- * #MBEDTLS_ERR_ECP_IN_PROGRESS (or, for functions in Mbed TLS's SSL module,
- * MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) and then be called later again in order
- * to further progress and eventually complete their operation. This is
- * controlled through mbedtls_ecp_set_max_ops() which limits the maximum number
- * of ECC operations a function may perform before pausing; see
+ * #MBEDTLS_ERR_ECP_IN_PROGRESS (or, for functions in the SSL module,
+ * #MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) and then be called later again in
+ * order to further progress and eventually complete their operation. This is
+ * controlled through mbedtls_ecp_set_max_ops() which limits the maximum
+ * number of ECC operations a function may perform before pausing; see
* mbedtls_ecp_set_max_ops() for more information.
*
* This is useful in non-threaded environments if you want to avoid blocking