1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-05 19:35:48 +03:00

Fix inaccurate information about FFDH

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard
2023-07-11 11:11:20 +02:00
parent a787c0f986
commit c97775162e

View File

@@ -51,9 +51,10 @@ application will already be doing this.
Mechanisms covered Mechanisms covered
------------------ ------------------
For now, only two families are supported: For now, only the following (families of) mechanisms are supported:
- hashes: SHA-3, SHA-2, SHA-1, MD5, etc. - hashes: SHA-3, SHA-2, SHA-1, MD5, etc.
- elliptic-curve cryptography (ECC): ECDH, ECDSA, EC J-PAKE, ECC key types. - elliptic-curve cryptography (ECC): ECDH, ECDSA, EC J-PAKE, ECC key types.
- finite-field Diffie-Hellman: FFDH algorithm, DH key types.
Supported means that when those are provided only by drivers, everything Supported means that when those are provided only by drivers, everything
(including PK, X.509 and TLS if `MBEDTLS_USE_PSA_CRYPTO` is enabled) should (including PK, X.509 and TLS if `MBEDTLS_USE_PSA_CRYPTO` is enabled) should
@@ -64,8 +65,8 @@ below.
In the near future (end of 2023), we are planning to also add support for In the near future (end of 2023), we are planning to also add support for
ciphers (AES) and AEADs (GCM, CCM, ChachaPoly). ciphers (AES) and AEADs (GCM, CCM, ChachaPoly).
Currently (mid-2023) we don't have plans to extend this to RSA of FFDH. If Currently (mid-2023) we don't have plans to extend this to RSA. If
you're interested in driver-only support for those, please let us know. you're interested in driver-only support for RSA, please let us know.
Hashes Hashes
------ ------
@@ -144,3 +145,8 @@ timeline, please let us know if you're interested.
TODO: apparently we don't really support having some curves built-in and TODO: apparently we don't really support having some curves built-in and
others driver-only... investigate and describe the situation. See also #7899. others driver-only... investigate and describe the situation. See also #7899.
Finite-field Diffie-Hellman
---------------------------
TODO