当前位置: 首页>>代码示例>>Python>>正文


Python challenges.ProofOfPossession类代码示例

本文整理汇总了Python中acme.challenges.ProofOfPossession的典型用法代码示例。如果您正苦于以下问题:Python ProofOfPossession类的具体用法?Python ProofOfPossession怎么用?Python ProofOfPossession使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ProofOfPossession类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: setUp

    def setUp(self):
        from acme.challenges import ProofOfPossession

        hints = ProofOfPossession.Hints(
            jwk=KEY.public_key(),
            cert_fingerprints=(),
            certs=(),
            serial_numbers=(),
            subject_key_identifiers=(),
            issuers=(),
            authorized_for=(),
        )
        self.msg = ProofOfPossession(
            alg=jose.RS256, hints=hints, nonce=b"xD\xf9\xb9\xdbU\xed\xaa\x17\xf1y|\x81\x88\x99 "
        )

        self.jmsg_to = {
            "type": "proofOfPossession",
            "alg": jose.RS256,
            "nonce": "eET5udtV7aoX8Xl8gYiZIA",
            "hints": hints,
        }
        self.jmsg_from = {
            "type": "proofOfPossession",
            "alg": jose.RS256.to_json(),
            "nonce": "eET5udtV7aoX8Xl8gYiZIA",
            "hints": hints.to_json(),
        }
开发者ID:NEOatNHNG,项目名称:letsencrypt,代码行数:28,代码来源:challenges_test.py

示例2: ProofOfPossessionTest

class ProofOfPossessionTest(unittest.TestCase):
    def setUp(self):
        from acme.challenges import ProofOfPossession

        hints = ProofOfPossession.Hints(
            jwk=KEY.public_key(),
            cert_fingerprints=(),
            certs=(),
            serial_numbers=(),
            subject_key_identifiers=(),
            issuers=(),
            authorized_for=(),
        )
        self.msg = ProofOfPossession(
            alg=jose.RS256, hints=hints, nonce=b"xD\xf9\xb9\xdbU\xed\xaa\x17\xf1y|\x81\x88\x99 "
        )

        self.jmsg_to = {
            "type": "proofOfPossession",
            "alg": jose.RS256,
            "nonce": "eET5udtV7aoX8Xl8gYiZIA",
            "hints": hints,
        }
        self.jmsg_from = {
            "type": "proofOfPossession",
            "alg": jose.RS256.to_json(),
            "nonce": "eET5udtV7aoX8Xl8gYiZIA",
            "hints": hints.to_json(),
        }

    def test_to_partial_json(self):
        self.assertEqual(self.jmsg_to, self.msg.to_partial_json())

    def test_from_json(self):
        from acme.challenges import ProofOfPossession

        self.assertEqual(self.msg, ProofOfPossession.from_json(self.jmsg_from))

    def test_from_json_hashable(self):
        from acme.challenges import ProofOfPossession

        hash(ProofOfPossession.from_json(self.jmsg_from))
开发者ID:NEOatNHNG,项目名称:letsencrypt,代码行数:42,代码来源:challenges_test.py

示例3: setUp

    def setUp(self):
        from acme.challenges import ProofOfPossession
        hints = ProofOfPossession.Hints(
            jwk=jose.JWKRSA(key=KEY.publickey()), cert_fingerprints=(),
            certs=(), serial_numbers=(), subject_key_identifiers=(),
            issuers=(), authorized_for=())
        self.msg = ProofOfPossession(
            alg=jose.RS256, hints=hints,
            nonce='xD\xf9\xb9\xdbU\xed\xaa\x17\xf1y|\x81\x88\x99 ')

        self.jmsg_to = {
            'type': 'proofOfPossession',
            'alg': jose.RS256,
            'nonce': 'eET5udtV7aoX8Xl8gYiZIA',
            'hints': hints,
        }
        self.jmsg_from = {
            'type': 'proofOfPossession',
            'alg': jose.RS256.to_json(),
            'nonce': 'eET5udtV7aoX8Xl8gYiZIA',
            'hints': hints.to_json(),
        }
开发者ID:kepstin,项目名称:letsencrypt,代码行数:22,代码来源:challenges_test.py

示例4: ProofOfPossessionTest

class ProofOfPossessionTest(unittest.TestCase):

    def setUp(self):
        from acme.challenges import ProofOfPossession
        hints = ProofOfPossession.Hints(
            jwk=jose.JWKRSA(key=KEY.publickey()), cert_fingerprints=(),
            certs=(), serial_numbers=(), subject_key_identifiers=(),
            issuers=(), authorized_for=())
        self.msg = ProofOfPossession(
            alg=jose.RS256, hints=hints,
            nonce='xD\xf9\xb9\xdbU\xed\xaa\x17\xf1y|\x81\x88\x99 ')

        self.jmsg_to = {
            'type': 'proofOfPossession',
            'alg': jose.RS256,
            'nonce': 'eET5udtV7aoX8Xl8gYiZIA',
            'hints': hints,
        }
        self.jmsg_from = {
            'type': 'proofOfPossession',
            'alg': jose.RS256.to_json(),
            'nonce': 'eET5udtV7aoX8Xl8gYiZIA',
            'hints': hints.to_json(),
        }

    def test_to_partial_json(self):
        self.assertEqual(self.jmsg_to, self.msg.to_partial_json())

    def test_from_json(self):
        from acme.challenges import ProofOfPossession
        self.assertEqual(
            self.msg, ProofOfPossession.from_json(self.jmsg_from))

    def test_from_json_hashable(self):
        from acme.challenges import ProofOfPossession
        hash(ProofOfPossession.from_json(self.jmsg_from))
开发者ID:kepstin,项目名称:letsencrypt,代码行数:36,代码来源:challenges_test.py

示例5: test_from_json_hashable

 def test_from_json_hashable(self):
     from acme.challenges import ProofOfPossession
     hash(ProofOfPossession.from_json(self.jmsg_from))
开发者ID:kepstin,项目名称:letsencrypt,代码行数:3,代码来源:challenges_test.py

示例6: test_from_json

 def test_from_json(self):
     from acme.challenges import ProofOfPossession
     self.assertEqual(
         self.msg, ProofOfPossession.from_json(self.jmsg_from))
开发者ID:kepstin,项目名称:letsencrypt,代码行数:4,代码来源:challenges_test.py


注:本文中的acme.challenges.ProofOfPossession类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。