Hi, I have an enciphering function: encipher(long data[2], long key[4])
This function is called when I want to change data (2*32bits) from the file to enciphered data using the key (128 bits).
The problem is that I don't know how to read binary from a file and call the function?
How would you do it?
I thought I could use bitset, but it can't take binary from string.