Skip to content

Commit eba5fc1

Browse files
Better checksum support (#729)
1 parent 52032a5 commit eba5fc1

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

awscrt/s3.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@ class S3ChecksumAlgorithm(IntEnum):
106106
CRC64NVME = 5
107107
"""CRC64NVME"""
108108

109+
SHA512 = 6,
110+
"""SHA512"""
111+
112+
XXHASH64 = 7,
113+
"""XXHASH64"""
114+
115+
XXHASH3 = 8,
116+
"""XXHASH3"""
117+
118+
XXHASH128 = 9,
119+
"""XXHASH128"""
120+
109121

110122
class S3ChecksumLocation(IntEnum):
111123
"""Where to put the checksum."""

codebuild/linux-integration-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111
phases:
1212
install:
1313
commands:
14-
- add-apt-repository ppa:ubuntu-toolchain-r/test
1514
- apt-get update -y
1615
- apt-get install gcc-7 cmake ninja-build python3 python3-pip python3-venv -y
1716
pre_build:

codebuild/mqtt5-python-canary-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ env:
1616
phases:
1717
install:
1818
commands:
19-
- add-apt-repository ppa:ubuntu-toolchain-r/test
2019
- apt-get update -y
2120
- apt-get install gcc-7 cmake ninja-build python3 -y
2221
- python3 -m pip install psutil

0 commit comments

Comments
 (0)