Part 1) I have a bitmap/jpeg image. I need to convert this image into an ASCII string (because I need to hash it) How is this conversion to ASCII done?
Part 2) Then, I need to send this ASCII string from client to server using HTTP Post.
From what I understand, I can only send data as a byte array using HTTP Post. How can I send an ASCII string instead of byte[]?
Code in C# would be much appreciated!!