Linux 上 C 语言的蓝牙配对
我正在寻找有关 linux 下 C 语言蓝牙配对/加密管理的信息、文档、示例代码或其他内容。我在哪里可以找到那个?
问候, 阿尔班
I am looking for information, documentation, sample code or something else about the management of Bluetooth pairing/encryption in C under linux. Where can i find that ?
Regards,
Alban
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
目前占主导地位的蓝牙堆栈是 Bluez;可以在 蓝牙编程简介 找到一个很好的教程
The dominant bluetooth stack at the moment is Bluez; a good tutorial can be found at An Introduction to Bluetooth Programming
您可以使用 hciconfig,它是作为 BlueZ 的一部分提供的工具。实际的配对/加密是在 BT 设备内部完成的,而不是在主机堆栈内完成的。您只需使用 hciconfig 配置 BT 设备,告诉它是否进行身份验证和加密。
请参阅 hciconfig 手册页,特别是 auth/noauth 和 encrypt/noencrypt 命令
You can use hciconfig, which is a tool supplied as part of BlueZ. The actual pairing / encryption is done inside the BT device, not the host stack. You just configure the BT device using hciconfig to tell it whether to do authentication and encryption.
See hciconfig man page, specifically the auth/noauth and encrypt/noencrypt commands
AFAIK 配对 API 是通过 D-Bus 实现的,可以在 C 中访问。
参见例如 http://git.kernel.org/?p=bluetooth/bluez.git;a=blob;f=doc/adapter-api.txt;hb=HEAD 和 http://git.kernel.org/?p=bluetooth/bluez.git;a=blob;f=doc/agent-api.txt;hb=HEAD
AFAIK the pairing API is via D-Bus, which can be accessed in C.
See e.g. http://git.kernel.org/?p=bluetooth/bluez.git;a=blob;f=doc/adapter-api.txt;hb=HEAD and http://git.kernel.org/?p=bluetooth/bluez.git;a=blob;f=doc/agent-api.txt;hb=HEAD