Хранить двоичные данные в буфере

ifstream input(fileName, ios::binary);
vector<byte> buffer(istreambuf_iterator<char>(input), {});
Fair Flatworm