From b02998fb9d0fc30cd4c3937ee0b5cc9c3d83e2d7 Mon Sep 17 00:00:00 2001 From: Chris Gooch Date: Fri, 20 Aug 2021 17:21:59 +0100 Subject: [PATCH] correct links to Mbed TLS .h files (use MbedOS specific versions) --- docs/api/security/TLS.md | 2 +- docs/porting/security/hw-accelerated-crypto.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/security/TLS.md b/docs/api/security/TLS.md index 2af86900f2..db62fe76cb 100644 --- a/docs/api/security/TLS.md +++ b/docs/api/security/TLS.md @@ -22,7 +22,7 @@ Each of them comes with complete usage instructions as a readme file in the repo ## Configuring Mbed TLS features -Mbed TLS simplifies enabling and disabling features to meet the needs of a particular project, through compilation options. The list of compilation flags is available in the fully documented configuration file, [config.h](https://github.com/ARMmbed/mbedtls/blob/development/include/mbedtls/config.h). +Mbed TLS simplifies enabling and disabling features to meet the needs of a particular project, through compilation options. The list of compilation flags is available in the fully documented configuration file, [config.h](https://github.com/ARMmbed/mbed-os/blob/master/connectivity/mbedtls/include/mbedtls/config.h). For example, in an application called `myapp`, if you want to enable the EC J-PAKE key exchange and disable the CBC cipher mode, you can create a file named `mbedtls-config-changes.h` in the `myapp` directory containing the following lines: diff --git a/docs/porting/security/hw-accelerated-crypto.md b/docs/porting/security/hw-accelerated-crypto.md index 602b6b11ce..115da167eb 100644 --- a/docs/porting/security/hw-accelerated-crypto.md +++ b/docs/porting/security/hw-accelerated-crypto.md @@ -16,7 +16,7 @@ You may want to add hardware acceleration in the following cases: - Your platform has a dedicated crypto-module capable of executing cryptographic primitives, and possibly storing keys securely. -The Mbed TLS library was written in C and it has a small amount of hand-optimized assembly code, limited to arbitrary precision multiplication on some processors. You can find the list of supported platforms in the top comment in [bn_mul.h](https://github.com/ARMmbed/mbedtls/blob/development/include/mbedtls/bn_mul.h). +The Mbed TLS library was written in C and it has a small amount of hand-optimized assembly code, limited to arbitrary precision multiplication on some processors. You can find the list of supported platforms in the top comment in [bn_mul.h](https://github.com/ARMmbed/mbed-os/blob/master/connectivity/mbedtls/include/mbedtls/bn_mul.h). ### What parts can I accelerate?