Hi,
[FileHash md5HashOfFileAtPath:myPath] returns the hexadecimal representation of the digest. I would need the 16 bytes binary form, is there any way to get this?
Reason? I need to apply a base64 on the binary data using
[md5ByteStringData base64EncodedStringWithOptions:0]
and put this into a content-md5 HTTP header.
I searched now for a long time and could not find any convenient way to do this.
Any help appreciated.