diff options
author | dp-arm <dimitris.papastamos@arm.com> | 2017-03-07 10:08:42 +0000 |
---|---|---|
committer | dp-arm <dimitris.papastamos@arm.com> | 2017-03-22 15:30:05 +0000 |
commit | 66b4c1660ab9094ffb5412ae0ca98eb4a8111662 (patch) | |
tree | ee01070093ab154756e8f1b288d2dac7af4b41f8 /include/drivers/auth | |
parent | 3944adca5943a050ca7e7e9cc802a9ae04dec186 (diff) | |
download | platform_external_arm-trusted-firmware-66b4c1660ab9094ffb5412ae0ca98eb4a8111662.tar.gz platform_external_arm-trusted-firmware-66b4c1660ab9094ffb5412ae0ca98eb4a8111662.tar.bz2 platform_external_arm-trusted-firmware-66b4c1660ab9094ffb5412ae0ca98eb4a8111662.zip |
mbedtls: Namespace TF specific macros
These macros are not part of mbed TLS so they should not be prefixed
with `MBEDTLS_` to avoid potential collision in the future. Use the
`TBBR_` suffix to highlight that they only used in TF.
`MBEDTLS_KEY_ALG` was not modified because that is documented and used
by platforms to select the key algorithm.
Change-Id: Ief224681715c481691c80810501830ce16e210b0
Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
Diffstat (limited to 'include/drivers/auth')
-rw-r--r-- | include/drivers/auth/mbedtls/mbedtls_config.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/drivers/auth/mbedtls/mbedtls_config.h b/include/drivers/auth/mbedtls/mbedtls_config.h index a8d724152..9fce42422 100644 --- a/include/drivers/auth/mbedtls/mbedtls_config.h +++ b/include/drivers/auth/mbedtls/mbedtls_config.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -33,8 +33,8 @@ /* * Key algorithms currently supported on mbed TLS libraries */ -#define MBEDTLS_RSA 1 -#define MBEDTLS_ECDSA 2 +#define TBBR_RSA 1 +#define TBBR_ECDSA 2 /* * Configuration file to build mbed TLS with the required features for @@ -69,11 +69,11 @@ #define MBEDTLS_PLATFORM_C -#if (MBEDTLS_KEY_ALG_ID == MBEDTLS_ECDSA) +#if (TBBR_KEY_ALG_ID == TBBR_ECDSA) #define MBEDTLS_ECDSA_C #define MBEDTLS_ECP_C #define MBEDTLS_ECP_DP_SECP256R1_ENABLED -#elif (MBEDTLS_KEY_ALG_ID == MBEDTLS_RSA) +#elif (TBBR_KEY_ALG_ID == TBBR_RSA) #define MBEDTLS_RSA_C #endif |