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


Python TOTP.generate方法代码示例

本文整理汇总了Python中cryptography.hazmat.primitives.twofactor.totp.TOTP.generate方法的典型用法代码示例。如果您正苦于以下问题:Python TOTP.generate方法的具体用法?Python TOTP.generate怎么用?Python TOTP.generate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cryptography.hazmat.primitives.twofactor.totp.TOTP的用法示例。


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

示例1: test_generate_sha512

# 需要导入模块: from cryptography.hazmat.primitives.twofactor.totp import TOTP [as 别名]
# 或者: from cryptography.hazmat.primitives.twofactor.totp.TOTP import generate [as 别名]
    def test_generate_sha512(self, backend, params):
        secret = params["secret"]
        time = int(params["time"])
        totp_value = params["totp"]

        totp = TOTP(secret, 8, hashes.SHA512(), 30, backend)
        assert totp.generate(time) == totp_value
开发者ID:Ayrx,项目名称:cryptography,代码行数:9,代码来源:test_totp.py

示例2: test_floating_point_time_generate

# 需要导入模块: from cryptography.hazmat.primitives.twofactor.totp import TOTP [as 别名]
# 或者: from cryptography.hazmat.primitives.twofactor.totp.TOTP import generate [as 别名]
    def test_floating_point_time_generate(self, backend):
        secret = b"12345678901234567890"
        time = 59.1

        totp = TOTP(secret, 8, hashes.SHA1(), 30, backend)

        assert totp.generate(time) == b"94287082"
开发者ID:Ayrx,项目名称:cryptography,代码行数:9,代码来源:test_totp.py

示例3: test_buffer_protocol

# 需要导入模块: from cryptography.hazmat.primitives.twofactor.totp import TOTP [as 别名]
# 或者: from cryptography.hazmat.primitives.twofactor.totp.TOTP import generate [as 别名]
 def test_buffer_protocol(self, backend):
     key = bytearray(b"a long key with lots of entropy goes here")
     totp = TOTP(key, 8, hashes.SHA512(), 30, backend)
     time = 60
     assert totp.generate(time) == b"53049576"
开发者ID:pyca,项目名称:cryptography,代码行数:7,代码来源:test_totp.py

示例4: test_verify_totp_failure

# 需要导入模块: from cryptography.hazmat.primitives.twofactor.totp import TOTP [as 别名]
# 或者: from cryptography.hazmat.primitives.twofactor.totp.TOTP import generate [as 别名]
def test_verify_totp_failure(skew):
    secret = generate_totp_secret()
    totp = TOTP(secret, TOTP_LENGTH, SHA1(), TOTP_INTERVAL, backend=default_backend())
    value = totp.generate(time.time() + skew)
    assert not verify_totp(secret, value)
开发者ID:craig5,项目名称:warehouse,代码行数:7,代码来源:test_otp.py


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