From 7273dc5a993abdc7bb9aed5e40acbf70b7293db1 Mon Sep 17 00:00:00 2001 From: Ron Eldor Date: Tue, 22 Jan 2019 13:50:54 +0200 Subject: [PATCH] Rename crypto_platform Rename `crypto_platform.h` to `crypto_device_platform.h`, as it was renamed in the code. --- docs/porting/target/hw-accelerated-crypto.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/porting/target/hw-accelerated-crypto.md b/docs/porting/target/hw-accelerated-crypto.md index b27d1dfcbe..4dc3852c9b 100644 --- a/docs/porting/target/hw-accelerated-crypto.md +++ b/docs/porting/target/hw-accelerated-crypto.md @@ -141,7 +141,7 @@ When your hardware accelerator driver requires initialization, do the following 1. Define `MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT` in `mbedtls_device.h` 1. Implement `crypto_platform_setup(crypto_platform_ctx *ctx)` and `crypto_platform_terminate(crypto_platform_ctx *ctx)`, which initializes and terminates your hardware accelerator driver. -1. Define `crypto_platform_ctx` in `crypto_platform.h`. +1. Define `crypto_platform_ctx` in `crypto_device_platform.h`. ### Considerations for alternative implementations