What is base64 blob storage?

Amruthavarshini M 41 Reputation points
2021-07-21T05:32:45.18+00:00

Hi all,

I am uploading my files to azure blob storage using Javascript. I am not converting it into base64 format. What is the advantages and disadvantages if I convert my files to base64 before uploading into azure blob containers?

And I have few questions regarding this

  1. How/when/where does the conversion to and from base64 take place?
  2. File type/size considerations? Performance concerns with large file?
  3. Does this add an extra layer of security?
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,687 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,427 questions
{count} votes

Accepted answer
  1. Sumarigo-MSFT 43,641 Reputation points Microsoft Employee
    2021-07-23T17:43:30.387+00:00

    @Amruthavarshini M

    1. Specifying the version number of the SDK will be necessary. However, the storage SDKs generally do not alter the blob content being uploaded in any way.
    2. Base 64 takes more space than whatever bytes you converted and it takes linear time to convert bytes to a base64 string.
    3. It does not.

    May I know what exactly are you trying to accomplish? You would want to base64 encode their data before storing it and unless they have a very specific reason for doing this I’d recommend against it.

    Hope this helps!
    Kindly let us know if the above helps or you need further assistance on this issue.


    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.


1 additional answer

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more