Skip to content

Commit d719f90

Browse files
correct links to Mbed TLS .h files (use MbedOS specific versions) (#1477)
1 parent 83b2868 commit d719f90

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/api/security/TLS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Each of them comes with complete usage instructions as a readme file in the repo
2222

2323
## Configuring Mbed TLS features
2424

25-
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).
25+
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).
2626

2727
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:
2828

docs/porting/security/hw-accelerated-crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You may want to add hardware acceleration in the following cases:
1616

1717
- Your platform has a dedicated crypto-module capable of executing cryptographic primitives, and possibly storing keys securely.
1818

19-
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).
19+
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).
2020

2121
### What parts can I accelerate?
2222

0 commit comments

Comments
 (0)