I am currently working on uploading a .json file on Azure Blob storage. All is working fine except when i try to macth the MD5 hash of uploaded file with the local file (exactly same one which was uploaded). Local file returns a byte array where are blob.Properties.ContentMD5 returns a string and both do not match.
Local MD5 hash: 67a45ac2700d14cc867c897182fde402 (is in hex)
blob.Properties.ContentMD5: c9QoHkamgiKTRANifltOGQ==
Any possible way to match both these?