简体   繁体   English

Android Wear和智能手机之间数据传输的安全性

[英]Security of data transmission between Android wear and smartphone

I have an application for Android wear. 我有Android应用程序的应用程序。 I use GoogleApiClient to send message between Android wear and smartphone. 我使用GoogleApiClient在Android服装和智能手机之间发送消息。

Is this communication safe? 这种沟通安全吗? Is it safe to send sensitive data between devices, like password? 在设备之间发送敏感数据是否安全,比如密码? Maybe I have to protect the data in some way? 也许我必须以某种方式保护数据?

Send message looks like this: 发送消息如下所示:

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

According to the documentation : 根据文件

A message is private to the application that created it and accessible only by that application on other nodes. 消息对于创建它的应用程序是专用的,并且只能由其他节点上的应用程序访问。

Although the underlying Bluetooth connection is encrypted it is considered to be breakable . 虽然底层蓝牙连接是加密的,但它被认为是易碎的 However, I'm not aware of detailed information if and how exactly the communication is secured on a higher level. 但是,我不知道详细信息是否以及如何在更高级别上确保通信的准确性。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM