使用 python 编码并填充 netbios 名称

发布于 2024-09-15 17:27:16 字数 671 浏览 3 评论 0原文

我正在尝试创建一个简单的脚本,将字符串(最多 15 个字符)转换为 netbios 名称(请参阅 http://support.microsoft.com/kb/194203):

name = sys.argv[1].upper()
converted = ''.join([chr((ord(c)>>4) + ord('A'))+chr((ord(c)&0xF) + ord('A')) for c in name])
print converted

尝试转换名称:“testing” 将返回:“4645454646444645454a454f4548”,这是正确的。 现在,根据提交的名称长度(最多 15 个字符),我们需要填充 4341,直到转换后的字符串长度为 64。 示例:

./script.py testing:
4645454646444645454a454f4548

但实际上应该是: 4645454646444645454a454f4548434143414341434143414341434143414341

无论如何可以轻松做到这一点吗?

谢谢 !

I'm trying to create a simple script that will convert a string (max 15 chars) to a netbios name (see http://support.microsoft.com/kb/194203) :

name = sys.argv[1].upper()
converted = ''.join([chr((ord(c)>>4) + ord('A'))+chr((ord(c)&0xF) + ord('A')) for c in name])
print converted

Trying to convert the name : "testing"
will return : "4645454646444645454a454f4548" which is correct.
Now depending the length of the name submitted (max 15 chars) we need to pad 4341 until the converted string is 64 long.
Example :

./script.py testing:
4645454646444645454a454f4548

But should actually be :
4645454646444645454a454f4548434143414341434143414341434143414341

Anyways to do this easily ?

Thanks !

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

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

发布评论

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

评论(1

星星的轨迹 2024-09-22 17:27:16
... + ((16 - len(name)) * '4341')
... + ((16 - len(name)) * '4341')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文