本文整理汇总了Python中ipaserver.install.ipa_otptoken_import.PSKCDocument.getKeyPackages方法的典型用法代码示例。如果您正苦于以下问题:Python PSKCDocument.getKeyPackages方法的具体用法?Python PSKCDocument.getKeyPackages怎么用?Python PSKCDocument.getKeyPackages使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ipaserver.install.ipa_otptoken_import.PSKCDocument
的用法示例。
在下文中一共展示了PSKCDocument.getKeyPackages方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_full
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_full(self):
nss.nss_init_nodb()
try:
doc = PSKCDocument(os.path.join(basename, "full.xml"))
assert [(t.id, t.options) for t in doc.getKeyPackages()] == [
(
u"KID1",
{
"ipatokenotpkey": u"GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ",
"ipatokennotafter": u"20060531000000Z",
"ipatokennotbefore": u"20060501000000Z",
"ipatokenserial": u"SerialNo-IssueNo",
"ipatokentotpclockoffset": 60000,
"ipatokenotpalgorithm": u"sha1",
"ipatokenvendor": u"iana.dummy",
"description": u"FriendlyName",
"ipatokentotptimestep": 200,
"ipatokenhotpcounter": 0,
"ipatokenmodel": u"Model",
"ipatokenotpdigits": 8,
"type": u"hotp",
},
)
]
finally:
nss.nss_shutdown()
示例2: test_mini
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_mini(self):
try:
doc = PSKCDocument(os.path.join(basename, "pskc-mini.xml"))
for t in doc.getKeyPackages():
t._PSKCKeyPackage__process()
except ValidationError: # Unsupported token type.
pass
else:
assert False
示例3: test_figure7
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_figure7(self):
doc = PSKCDocument(os.path.join(basename, "pskc-figure7.xml"))
assert doc.keyname == 'My Password 1'
doc.setKey(b'qwerty')
assert [(t.id, t.options) for t in doc.getKeyPackages()] == \
[(u'123456', {
'ipatokenotpkey': u'GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ',
'ipatokenvendor': u'TokenVendorAcme',
'ipatokenserial': u'987654321',
'ipatokenotpdigits': 8,
'type': u'hotp'})]
示例4: test_mini
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_mini(self):
nss.nss_init_nodb()
try:
doc = PSKCDocument(os.path.join(basename, "pskc-mini.xml"))
[(t.id, t.options) for t in doc.getKeyPackages()]
except ValidationError: # Unsupported token type.
pass
else:
assert False
finally:
nss.nss_shutdown()
示例5: test_figure6
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_figure6(self):
doc = PSKCDocument(os.path.join(basename, "pskc-figure6.xml"))
assert doc.keyname == 'Pre-shared-key'
doc.setKey(codecs.decode('12345678901234567890123456789012', 'hex'))
assert [(t.id, t.options) for t in doc.getKeyPackages()] == \
[(u'12345678', {
'ipatokenotpkey': u'GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ',
'ipatokenvendor': u'Manufacturer',
'ipatokenserial': u'987654321',
'ipatokenhotpcounter': 0,
'ipatokenotpdigits': 8,
'type': u'hotp'})]
示例6: test_figure3
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_figure3(self):
doc = PSKCDocument(os.path.join(basename, "pskc-figure3.xml"))
assert doc.keyname is None
assert [(t.id, t.options) for t in doc.getKeyPackages()] == [
(
u"12345678",
{
"ipatokenotpkey": u"GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ",
"ipatokenvendor": u"Manufacturer",
"ipatokenserial": u"987654321",
"ipatokenhotpcounter": 0,
"ipatokenotpdigits": 8,
"type": u"hotp",
},
)
]
示例7: test_full
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_full(self):
doc = PSKCDocument(os.path.join(basename, "full.xml"))
assert [(t.id, t.options) for t in doc.getKeyPackages()] == \
[(u'KID1', {
'ipatokenotpkey': u'GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ',
'ipatokennotafter': u'20060531000000Z',
'ipatokennotbefore': u'20060501000000Z',
'ipatokenserial': u'SerialNo-IssueNo',
'ipatokentotpclockoffset': 60000,
'ipatokenotpalgorithm': u'sha1',
'ipatokenvendor': u'iana.dummy',
'description': u'FriendlyName',
'ipatokentotptimestep': 200,
'ipatokenhotpcounter': 0,
'ipatokenmodel': u'Model',
'ipatokenotpdigits': 8,
'type': u'hotp',
})]
示例8: test_figure7
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_figure7(self):
nss.nss_init_nodb()
try:
doc = PSKCDocument(os.path.join(basename, "pskc-figure7.xml"))
assert doc.keyname == "My Password 1"
doc.setKey("qwerty")
assert [(t.id, t.options) for t in doc.getKeyPackages()] == [
(
u"123456",
{
"ipatokenotpkey": u"GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ",
"ipatokenvendor": u"TokenVendorAcme",
"ipatokenserial": u"987654321",
"ipatokenotpdigits": 8,
"type": u"hotp",
},
)
]
finally:
nss.nss_shutdown()
示例9: test_figure6
# 需要导入模块: from ipaserver.install.ipa_otptoken_import import PSKCDocument [as 别名]
# 或者: from ipaserver.install.ipa_otptoken_import.PSKCDocument import getKeyPackages [as 别名]
def test_figure6(self):
nss.nss_init_nodb()
try:
doc = PSKCDocument(os.path.join(basename, "pskc-figure6.xml"))
assert doc.keyname == "Pre-shared-key"
doc.setKey("12345678901234567890123456789012".decode("hex"))
assert [(t.id, t.options) for t in doc.getKeyPackages()] == [
(
u"12345678",
{
"ipatokenotpkey": u"GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ",
"ipatokenvendor": u"Manufacturer",
"ipatokenserial": u"987654321",
"ipatokenhotpcounter": 0,
"ipatokenotpdigits": 8,
"type": u"hotp",
},
)
]
finally:
nss.nss_shutdown()