
v0.39: Grademe is back in your terminal.
Try the CLI betaCount the distinct keys produced, where each process's key is its process id modulo 32768.
In 2008 a Debian maintainer, silencing a memory warning, commented out the line that fed randomness into OpenSSL. For two years every key generated on Debian and Ubuntu leaned on almost nothing but the process id, so only 32768 different keys were ever possible. Attackers could just precompute all of them. Two processes whose ids match modulo 32768 got the exact same key. Count how many truly distinct keys a batch of processes would make.
distinct_keys({100,200,300}, 3)Expected result
3For your own tracking. Tests grade your code.
distinct_keys({1,32769,5}, 3)Expected result
2distinct_keys({7,7,7}, 3)Expected result
1Expected files
keys.cAllowed functions
None. Write every helper yourself.
