How to download not hashed data from server?

account-22110888a.ki 21 Reputation points
2022-05-04T07:39:45.217+00:00

I need to download data from server but not as hash. I use azcopy. Is there any flags to help me with that?

Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,686 questions
0 comments No comments
{count} votes

Accepted answer
  1. SaiKishor-MSFT 17,181 Reputation points
    2022-05-05T07:44:15.29+00:00

    @account-22110888a.ki Thank you for reaching out to Microsoft Q&A. I understand that you want to know how to download not hashed data from the Azure Storage, is that right?

    The StoreBlobContentMD5 request option instructs the Storage Client to calculate the MD5 hash of the blob content during an upload operation. This value is then stored on the blob object as the Content-MD5 header. This option applies only to upload operations. This is useful for validating the integrity of the blob upon later download, and compatible with the Content-MD5 header as defined in the HTTP spec. If using the Storage Client for later download, if the Content-MD5 header is present, the MD5 hash of the content will be validated, unless "DisableContentMD5Validation" is set. Note that this value is not validated on the Azure Storage service on either upload or download of data; it is merely stored and returned.

    Can you confirm how the data was uploaded to the cloud and if MD5 hash was set to true? Thank you!

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. account-22110888a.ki 21 Reputation points
    2022-05-11T12:58:56.793+00:00

    Hi, I am sorry for such a delay.
    I want to download not hashed data from Azure (via terminal and AzCopy), and yes, MD5 has was set to true.