當前位置: 首頁>>代碼示例>>Python>>正文


Python ipa_otptoken_import.PSKCDocument類代碼示例

本文整理匯總了Python中ipaserver.install.ipa_otptoken_import.PSKCDocument的典型用法代碼示例。如果您正苦於以下問題:Python PSKCDocument類的具體用法?Python PSKCDocument怎麽用?Python PSKCDocument使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了PSKCDocument類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_full

 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()
開發者ID:apophys,項目名稱:freeipa,代碼行數:26,代碼來源:test_otptoken_import.py

示例2: test_mini

 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
開發者ID:npmccallum,項目名稱:freeipa,代碼行數:9,代碼來源:test_otptoken_import.py

示例3: test_figure7

 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'})]
開發者ID:npmccallum,項目名稱:freeipa,代碼行數:11,代碼來源:test_otptoken_import.py

示例4: test_mini

 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()
開發者ID:hroncok,項目名稱:freeipa,代碼行數:11,代碼來源:test_otptoken_import.py

示例5: test_figure6

 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'})]
開發者ID:npmccallum,項目名稱:freeipa,代碼行數:12,代碼來源:test_otptoken_import.py

示例6: test_figure3

 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",
             },
         )
     ]
開發者ID:apophys,項目名稱:freeipa,代碼行數:16,代碼來源:test_otptoken_import.py

示例7: test_full

 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',
         })]
開發者ID:npmccallum,項目名稱:freeipa,代碼行數:18,代碼來源:test_otptoken_import.py

示例8: test_figure7

 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()
開發者ID:apophys,項目名稱:freeipa,代碼行數:20,代碼來源:test_otptoken_import.py

示例9: test_figure6

 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()
開發者ID:apophys,項目名稱:freeipa,代碼行數:21,代碼來源:test_otptoken_import.py


注:本文中的ipaserver.install.ipa_otptoken_import.PSKCDocument類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。