对新的蓝牙 API createInsecureRfcommSocket() 和配对感到困惑

发布于 2024-10-31 14:04:47 字数 235 浏览 0 评论 0原文

在过去,我曾尝试过连接两个 Android 设备,每次它们都要求用户输入 PIN 码才能连接。我什至实现了旧的“android-bluetooth”Google 代码项目,该项目试图在 Android 1.5 之后注入 pin 来实现无用户连接,但没有成功。

我的问题是,新的 2.3.3 API 是否允许两个 Android 设备在无需用户干预的情况下进行连接?除了NFC之外,有没有什么办法可以让手机在未经授权的情况下进行交互呢?谢谢。

In this past I've played with connecting two Android devices and every time they've required the user to input a pin to connect. I've even implemented the old "android-bluetooth" Google code project that attempted to inject the pin for a user-free connection without success after Android 1.5.

My question is, does the new 2.3.3 APIs allow for two Android devices to connect without user intervention? Not including NFC, is there anyway to allow phones to interact without authorization? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

复古式 2024-11-07 14:04:47

蓝牙 2.1 及更高版本有一个新的配对机制,称为安全简单配对 (SSP),它允许几种不同的配对方法,并且它与传统配对(即 PIN 输入机制)不同。
新的安全简单配对机制不依赖于用户输入的 PIN,而是生成一个 6 位数的密钥。

其中一种 SSP 机制允许在无需用户任何干预的情况下进行配对。此方法称为“Just-works”关联模型,createInsecureRfcommSocket() API 使用此方法。

另一个 API createRfcommSocket() 将使用其他机制 - 密钥输入或用户确认,其中 6 位密钥发挥作用。

仅当两个设备都是蓝牙 2.1 及更高版本时,才会使用新的配对

我有 的详细说明新的配对机制在这里

Bluetooth version 2.1 and above has a new pairing mechanism called - Secure Simple Pairing (SSP), it allows for few different methods to pair , and it is different from the legacy pairing (which was the PIN entry mechanism).
The new Secure simple pairing mechanism does not depend on user entered PIN, instead it has a generated 6 digit pass key.

One of the SSP mechanism allows for pairing without any intervention from the user. This method is called "Just-works" association model, the createInsecureRfcommSocket() API uses this method.

The other API createRfcommSocket() will use the other mechanism - passkey entry or user confirmation where the 6 digit passkey comes into play.

The new pairing will get used only when both devices are bluetooth 2.1 and above

I have a detailed description of the new pairing mechanism here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文