Leonard Dye
·9d agoWhy would a basic math solution be ignored by governments?Leonard Dye
This is written in Python. This is the program for "REAL RANDOM NUMBERS" that the governments don't want out! The reason is with real random numbers you have unbreakable encryption even quantum computers cannot break.
def challenge():
number_of_needed_numbers = 60000
count = 0
lowest_random_number_needed = 0
highest_random_number_needed = 1
while count < number_of_needed_numbers:
start_time = time.time()
time.sleep(0.00000000000001)
end_time = time.time()
low_time = ((end_time + start_time) / 2)
random.seed(low_time)
random_number = random.randint(lowest_random_number_needed, highest_random_number_needed)
count += 1
print(random_number)
if __name__ == '__main__':
challenge()
This solves two major problems, real random number generator and unbreakable encryption.
https://www.mathisfunforum.com/viewforum.php?id=2 then Possible 'new knowledge'.
Please read all three pages of this post. All is important to understand our world. Spoiler alert: We are not free.