summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorChristian Eggers <ceggers@arri.de>2026-02-25 18:07:28 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2026-03-12 15:26:30 -0400
commit0e4d4dcc1a6e82cc6f9abf32193558efa7e1613d (patch)
tree7cfc0a6d1d3d14c9f400dac8e3d6e0f5edc71aac /net
parentb6a2bf43aa37670432843bc73ae2a6288ba4d6f8 (diff)
Bluetooth: SMP: make SM/PER/KDU/BI-04-C happy
The last test step ("Test with Invalid public key X and Y, all set to 0") expects to get an "DHKEY check failed" instead of "unspecified". Fixes: 6d19628f539f ("Bluetooth: SMP: Fail if remote and local public keys are identical") Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index e67bf7b34ea7..485e3468bd26 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -2743,7 +2743,7 @@ static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb)
if (!test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags) &&
!crypto_memneq(key, smp->local_pk, 64)) {
bt_dev_err(hdev, "Remote and local public keys are identical");
- return SMP_UNSPECIFIED;
+ return SMP_DHKEY_CHECK_FAILED;
}
memcpy(smp->remote_pk, key, 64);