PyKCS11 不可散列列表

PyKCS11 unhashable list

我的一个 python 脚本旨在获取特定 .so 库中 slots/tokens 的详细信息。输出如下所示:

Library manufacturerID: Safenet, Inc.                   
Available Slots: 4
Slot no: 0
slotDescription: ProtectServer K5E:00045
manufacturerID: SafeNet Inc.
TokenInfo
label: CKM
manufacturerID: SafeNet Inc.
model: K5E:PL25
Opened session 0x00000002

Found 38 objects: [5021, 5022, 5014, 5016, 4, 5, 6, 7, 8, 9, 16, 18, 23, 24, 26, 27, 29, 30, 32, 33, 35, 36, 38, 39, 5313, 5314, 4982, 5325, 5326, 5328, 5329, 5331, 5332, 5335, 5018, 4962, 5020, 4963]

我可以打开会话并获取信息。我 运行 陷入可疑问题的地方是检索库中所述键的属性。

我为我的规范所需的所需属性创建了自己的模板,如下:

    all_attributes = PyKCS11.CKA.keys()
    # only use the integer values and not the strings like 'CKM_RSA_PKCS'
    all_attributes = [e for e in all_attributes if isinstance(e, int)]
    attributes = [
            ["CKA_ENCRYPT", PyKCS11.CKA_ENCRYPT],
            ["CKA_CLASS", PyKCS11.CKA_CLASS],
            ["CKA_DECRYPT", PyKCS11.CKA_DECRYPT],
            ["CKA_SIGN", PyKCS11.CKA_SIGN],
            ["CKA_VERIFY", PyKCS11.CKA_VERIFY],
            ["CKA_ID", PyKCS11.CKA_ID],
            ["CKA_MODULUS", PyKCS11.CKA_MODULUS],
            ["CKA_MODULUS", PyKCS11.CKA_MODULUS],
            ["CKA_MODULUS_BITS", PyKCS11.CKA_MODULUS_BITS],
            ["CKA_PUBLIC_EXPONENT", PyKCS11.CKA_PUBLIC_EXPONENT],
            ["CKA_PRIVATE_EXPONENT", PyKCS11.CKA_PRIVATE_EXPONENT],
            ]

我得到一个不可散列的类型:'list' 尝试将属性转储到以下块时出现类型错误:

print "Dumping attributes:"
        for q, a in zip(all_attributes, attributes):
            if a == None:
                # undefined (CKR_ATTRIBUTE_TYPE_INVALID) attribute
                continue
            if q == PyKCS11.CKA_CLASS:
                print format_long % (PyKCS11.CKA[q], PyKCS11.CKO[a], a)
            elif q == PyKCS11.CKA_CERTIFICATE_TYPE:
                print format_long % (PyKCS11.CKA[q], PyKCS11.CKC[a], a)
            elif q == PyKCS11.CKA_KEY_TYPE:
                print format_long % (PyKCS11.CKA[q], PyKCS11.CKK[a], a)
            elif session.isBin(q):
                print format_binary % (PyKCS11.CKA[q], len(a))
                if a:
                    print dump(''.join(map(chr, a)), 16),
            elif q == PyKCS11.CKA_SERIAL_NUMBER:
                print format_binary % (PyKCS11.CKA[q], len(a))
                if a:
                    print hexdump(a, 16),
            else:
                print format_normal % (PyKCS11.CKA[q], a)

这一行特别产生了错误:

if q == PyKCS11.CKA_CLASS:
            print format_long % (PyKCS11.CKA[q], PyKCS11.CKO[a], a)

我知道您不能将列表用作字典中的键,因为字典键必须是不可变的。在这种情况下我将如何使用元组?

(这个答案是在你其他问题的上下文中放在一起的)

要读取 PKCS#11 对象的属性o,您可以使用以下代码:

# List which attributes you want to read
attributeIds = [
    CKA_ENCRYPT,
    CKA_CLASS,
    CKA_DECRYPT,
    CKA_SIGN,
    CKA_VERIFY,
    CKA_ID,
    CKA_MODULUS,
    CKA_MODULUS_BITS,
    CKA_PUBLIC_EXPONENT,
    CKA_PRIVATE_EXPONENT
]

# Read them
attributeValues = session.getAttributeValue(o, attributeIds)

# Print them (variant 1 -- more readable)
for i in range(0,len(attributeIds)):
    attributeName = CKA[attributeIds[i]]
    print("Attribute %s: %s" % (attributeName, attributeValues[i]))

# Print them (variant 2 -- more consise)
for curAttrId, currAttrVale in zip(attributeIds,attributeValues):
    attributeName = CKA[curAttrId]
    print("Attribute %s: %s" % (attributeName, currAttrVale))

一些额外的(随机)注释:

  • Session.getAttributeValue() method 方法需要一个属性 ID 列表。您正在构建 "lists containing Attribute name (string) and Attribute id (int)" 的列表——没有任何转换——这行不通

  • CKA_PRIVATE_EXPONENT 属性对 RSA 私钥敏感。您可能无法阅读它,除非 CKA_SENSITIVE 属性设置为 False(参见 here

  • 确保只读取特定对象的有效属性(基于类型、机制、敏感性...)

  • 上面的代码片段没有使用 PyKCS11. 前缀来引用 PyKCS11 对象成员,因为它假定它们是使用 from PyKCS11 import * 指令导入的(我对 python告诉你哪条路好)

  • 属性 id <-> 属性名称映射基于事实,即 PKCS11.CKA 字典包含具有 int 值的字符串键和具有字符串键的 int 键(您可以转储此自己查字典或者查 source code)

  • 使用 print(o)

  • 转储属性可能更容易
  • 我建议阅读 PKCS#11 standard

  • 的相关部分
  • (如果您引用 the origins of your thoughts,您可能会更快得到答案)

祝你好运!