Android 穿戴设备与智能手机之间数据传输的安全性

Security of data transmission between Android wear and smartphone

我申请了 Android 磨损。我使用 GoogleApiClient 在 Android 穿戴设备和智能手机之间发送消息。

这次通讯安全吗?在设备之间发送敏感数据(如密码)是否安全?也许我必须以某种方式保护数据?

发送消息如下所示:

Wearable.MessageApi.sendMessage(googleApiClient, nodeId, path, message.getBytes()).await();

根据 documentation:

A message is private to the application that created it and accessible only by that application on other nodes.

虽然底层蓝牙连接是加密的,但它被认为是 breakable。但是,我不知道通信是否以及如何在更高级别上得到保护的详细信息。