I am currently working with a pseudo-random number generator that creates binary numbers using a user-supplied polynomial and the LFSR method. To enhance the process, I need to convert a loaded file into binary format so that I can apply the XOR operation between each bit of the loaded data and the generated key. However, I am struggling with the conversion process and how to set it up in a way that allows for seamless XOR operations. The only solution I have come across so far is to use the
input type="file" @change="onFileSelected"/>
to load the file. Any guidance or insights from the community would be greatly appreciated.