Security of data transmission between Android wear and smartphone

£可爱£侵袭症+ 提交于 2019-12-07 12:06:42

问题


I have an application for Android wear. I use GoogleApiClient to send message between Android wear and smartphone.

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();

回答1:


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.



来源:https://stackoverflow.com/questions/29754925/security-of-data-transmission-between-android-wear-and-smartphone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!