编码 Netbios 名称 python
我想在 python 中将“ITSATEST”编码为它的 netbios 名称值; 出现表和说明在这里: http://support.microsoft.com/kb/194203
我不知道这是怎么回事用Python轻松完成,有人可以帮我吗?
谢谢 !
I would like to encode "ITSATEST" to it's netbios name value in python;
The occurence table and explication are here:
http://support.microsoft.com/kb/194203
I dont know how this could be done easily in python, someone can give me a hand ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以映射原始字符串的每个半字节,获取其数值并从“A”偏移:
You can map each nibble of the original string, taking its numerical value and offsetting from 'A':
查看 RFC 1001,它定义了编码。第 14.1 节“第一级编码”是编码算法,您可以直接在 Python 中实现。
Take a look at RFC 1001, which defines the encoding. In section 14.1 "FIRST LEVEL ENCODING" is the algorithm for the encoding, which you could implement directly in Python.