MCPcopy Index your code
hub / github.com/aws/aws-cli / create_checksum_for_algorithm

Function create_checksum_for_algorithm

awscli/s3transfer/checksums.py:49–52  ·  view source on GitHub ↗
(algorithm)

Source from the content-addressed store, hash-verified

47
48
49def create_checksum_for_algorithm(algorithm):
50 if checksum_cls := _CHECKSUM_CLS.get(algorithm):
51 return checksum_cls()
52 return None
53
54
55class FullObjectChecksumCombiner:

Calls

no outgoing calls