First, yes this is a school project. That said, I have a seed, now I need to create a function that will create a byte array of random bits. The input for the function should be the number of requested random bits.
Here's an example:
unsigned char* getRandomBits (int number);
number is number of random bits requested.
Any tips would be appreciated.
Thanks.