We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9014bf commit ea0bbabCopy full SHA for ea0bbab
packages/middleware-flexible-checksums/src/constants.ts
@@ -52,6 +52,9 @@ export const DEFAULT_RESPONSE_CHECKSUM_VALIDATION = RequestChecksumCalculation.W
52
* Checksum Algorithms supported by the SDK.
53
*/
54
export enum ChecksumAlgorithm {
55
+ /**
56
+ * @deprecated Use {@link ChecksumAlgorithm.CRC32} instead.
57
+ */
58
MD5 = "MD5",
59
CRC32 = "CRC32",
60
CRC32C = "CRC32C",
@@ -70,7 +73,7 @@ export enum ChecksumLocation {
70
73
/**
71
74
* @internal
72
75
-export const DEFAULT_CHECKSUM_ALGORITHM = ChecksumAlgorithm.MD5;
76
+export const DEFAULT_CHECKSUM_ALGORITHM = ChecksumAlgorithm.CRC32;
77
78
79
0 commit comments