本文整理汇总了Python中hashlib._Hash方法的典型用法代码示例。如果您正苦于以下问题:Python hashlib._Hash方法的具体用法?Python hashlib._Hash怎么用?Python hashlib._Hash使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hashlib
的用法示例。
在下文中一共展示了hashlib._Hash方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _raise
# 需要导入模块: import hashlib [as 别名]
# 或者: from hashlib import _Hash [as 别名]
def _raise(self, gots):
# type: (Dict[str, _Hash]) -> NoReturn
raise HashMismatch(self._allowed, gots)
示例2: get_checksum
# 需要导入模块: import hashlib [as 别名]
# 或者: from hashlib import _Hash [as 别名]
def get_checksum(cls, hash_object=None):
# type: (Optional[hashlib._Hash]) -> hashlib._Hash
"""
Get sha265 checksum of the dockerfile and included files.
Also, include checksums of all required builders.
"""
if hash_object is None:
hash_object = hashlib.sha256()
for builder_cls in cls.REQUIRED_CHECKSUM_IMAGES:
hash_object = builder_cls.get_checksum(hash_object=hash_object)
if cls.IGNORE_CACHING:
return hash_object
dockerfile = cls.get_dockerfile_content()
hash_object.update(dockerfile.encode("utf-8"))
for path in cls.INCLUDE_PATHS:
if path.is_dir():
# TODO implement checksum calculation for directories.
pass
else:
hash_object.update(path.read_bytes())
return hash_object