lonjil

Results 42 comments of lonjil

Another thing that could be nice is having some easy way of using Flatpak JREs. I have no idea how that kind of add-in flatpak stuff works though.

AGPL doesn't do what people think it does. The way it's actually written, any time you make a source code modification, you have to, *at the same time*, make the...

I don't think that that function actually generates 8 bits of entropy, so it should probably do more than 32 calls. I tried 256 calls and it was still much...

When I tried it, I didn't mask `hydro_random_rbyte` down. I just let it feed the output directly to `hydro_hash_update` 256 times by changing `ebits += 8` to `ebits += 1`.

The Uno's serial USB connection is unfortunately very slow, but I have a few hundred KiB of output data so far. Testing with nConversions=20, nConversions=100, nConversions=1, and in a bit...

That is true. Right now I'm testing it with a global instead so that it still pulls up and down for each call, without looping internally. Also, seems like the...

Doing some more testing, any prescaler option other than 64 seems to produce fewer unique readings from the ADC. Also, regardless of settings, at least half of all readings are...

I generated 17MiB with this code ```c uint8_t random_rbyte() { uint8_t rnd = 0; ADMUX = 0b01001111; // Low (0V) ADMUX = 0b01001110; // High (1.1V) ADCSRA |= 1 >...

What kind of tools are good for this sort of analysis? I've just been stringing commands together in bash, but that's starting to feel quite inadequate. Looking at every individual...

Last 4 bits: ``` 976124 0000 1998552 0001 1231198 0010 934489 0011 1658592 0100 2058465 0101 1719964 0110 1588391 0111 986848 1000 669845 1001 121999 1010 37930 1011 370389 1100...