本文整理汇总了Python中heartbeat.Heartbeat.get_public方法的典型用法代码示例。如果您正苦于以下问题:Python Heartbeat.get_public方法的具体用法?Python Heartbeat.get_public怎么用?Python Heartbeat.get_public使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类heartbeat.Heartbeat
的用法示例。
在下文中一共展示了Heartbeat.get_public方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_usage
# 需要导入模块: from heartbeat import Heartbeat [as 别名]
# 或者: from heartbeat.Heartbeat import get_public [as 别名]
def test_usage(self):
beat = Heartbeat()
public_beat = beat.get_public()
with open("files/test.txt", "rb") as file:
(tag, state) = beat.encode(file)
challenge = beat.gen_challenge(state)
with open("files/test.txt", "rb") as file:
proof = public_beat.prove(file, challenge, tag)
is_valid = beat.verify(proof, challenge, state)
if is_valid:
print("file is stored by the server")
else:
print("file proof invalid")
self.assertTrue(is_valid)