From 80941af0f6c20d06bf982233d294fb08f6218c4f Mon Sep 17 00:00:00 2001 From: Vincent Coubard Date: Tue, 1 May 2018 11:16:41 +0100 Subject: [PATCH] BLE: Add : LESC authenticated encryption to the list of possible link encryption. --- features/FEATURE_BLE/ble/BLETypes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/FEATURE_BLE/ble/BLETypes.h b/features/FEATURE_BLE/ble/BLETypes.h index b6fc3d5c9a..7dd3729a88 100644 --- a/features/FEATURE_BLE/ble/BLETypes.h +++ b/features/FEATURE_BLE/ble/BLETypes.h @@ -129,7 +129,8 @@ struct link_encryption_t : SafeEnum { NOT_ENCRYPTED, /**< The link is not secured. */ ENCRYPTION_IN_PROGRESS, /**< Link security is being established. */ ENCRYPTED, /**< The link is secure. */ - ENCRYPTED_WITH_MITM /**< The link is secure and authenticated. */ + ENCRYPTED_WITH_MITM, /**< The link is secure and authenticated. */ + ENCRYPTED_WITH_SC_AND_MITM /**< The link is secure and authenticated with a secure connection key. */ }; /**