I'd like to read binary files and generate an output consisting of normal 8-bit numerical values corresponding to the bytes.
In other words, the input is a binary fine and output should be an array of values 0-255.

1. How should the file be opened/read?
2. Is there an automatic conversion from binary to 8-bit?

Thank you!