aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThomas Daubney <thomas.daubney@arm.com>2024-06-14 10:37:13 +0100
committerThomas Daubney <thomas.daubney@arm.com>2024-06-14 10:37:13 +0100
commit62af02c063f0c37fc7ecc1e3ad9915936df895a4 (patch)
tree5a2a9704785fdbe95a9c7d50a9d763591d4e5f46 /docs
parenta0cfe01bb7598c91e29f978ba357540d51221ca7 (diff)
downloadmbedtls-62af02c063f0c37fc7ecc1e3ad9915936df895a4.zip
mbedtls-62af02c063f0c37fc7ecc1e3ad9915936df895a4.tar.gz
mbedtls-62af02c063f0c37fc7ecc1e3ad9915936df895a4.tar.bz2
Drop support for VIA Padlock
Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/architecture/alternative-implementations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/architecture/alternative-implementations.md b/docs/architecture/alternative-implementations.md
index eacdea7..549d47c 100644
--- a/docs/architecture/alternative-implementations.md
+++ b/docs/architecture/alternative-implementations.md
@@ -46,7 +46,7 @@ Generally, alternative implementations can define their context types to any C t
Where a context type needs to have a certain field, the field must have the same type and semantics as in the built-in implementation, but does not need to be at the same position in the structure. Furthermore, unless otherwise indicated, only read access is necessary: the field can be `const`, and modifications to it do not need to be supported. For example, if an alternative implementation of asymmetric cryptography uses a different representation of large integers, it is sufficient to provide a read-only copy of the fields listed here of type `mbedtls_mpi`.
-* AES: if `MBEDTLS_AESNI_C` or `MBEDTLS_PADLOCK_C` is enabled, `mbedtls_aes_context` must have the fields `nr` and `rk`.
+* AES: if `MBEDTLS_AESNI_C` is enabled, `mbedtls_aes_context` must have the fields `nr` and `rk`.
* DHM: if `MBEDTLS_DEBUG_C` is enabled, `mbedtls_dhm_context` must have the fields `P`, `Q`, `G`, `GX`, `GY` and `K`.
* ECP: `mbedtls_ecp_group` must have the fields `id`, `P`, `A`, `B`, `G`, `N`, `pbits` and `nbits`.
* If `MBEDTLS_PK_PARSE_EC_EXTENDED` is enabled, those fields must be writable, and `mbedtls_ecp_point_read_binary()` must support a group structure where only `P`, `pbits`, `A` and `B` are set.