You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-blob/src/main/java/com/azure/storage/blob/implementation/util/BuilderHelper.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -97,6 +97,8 @@ public static HttpPipeline buildPipeline(StorageSharedKeyCredential storageShare
97
97
// Closest to API goes first, closest to wire goes last.
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-common/src/main/java/com/azure/storage/common/implementation/contentvalidation/StorageCrc64Calculator.java
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2400,6 +2400,8 @@ public class StorageCrc64Calculator {
2400
2400
2401
2401
/**
2402
2402
* Computes the CRC64 checksum for the given byte array using the Azure Storage CRC64 polynomial.
2403
+
* This method processes the input data in chunks of 32 bytes for efficiency and uses lookup tables
2404
+
* to update the CRC values.
2403
2405
*
2404
2406
* @param src the byte array for which the CRC64 checksum is to be computed.
2405
2407
* @param uCrc the initial CRC value.
@@ -2420,7 +2422,7 @@ public static long compute(byte[] src, long uCrc) {
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-common/src/main/java/com/azure/storage/common/implementation/contentvalidation/StructuredMessageDecodingStream.java
0 commit comments