BLE: Add : LESC authenticated encryption to the list of possible link encryption.

pull/6932/head
Vincent Coubard 2018-05-01 11:16:41 +01:00
parent db565d38b3
commit 80941af0f6
1 changed files with 2 additions and 1 deletions

View File

@ -129,7 +129,8 @@ struct link_encryption_t : SafeEnum<link_encryption_t, uint8_t> {
NOT_ENCRYPTED, /**< The link is not secured. */ NOT_ENCRYPTED, /**< The link is not secured. */
ENCRYPTION_IN_PROGRESS, /**< Link security is being established. */ ENCRYPTION_IN_PROGRESS, /**< Link security is being established. */
ENCRYPTED, /**< The link is secure. */ 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. */
}; };
/** /**