Answers for "is there an algorithm to create a truly random password"

1

is there an algorithm to create a truly random password

well any true random generator is hard. take c++ for example: you have to import time to actually generate something random and then implement srand(time(0)). Since in c++, there is an algorithm for generating randomness, it actually means that the randomness can be broken and true randomness cannot be achieved through code. Srand is the closest in c++ to a truly random program. This is weird to understand but I hope this helps give you an idea of randomness in programming.
Posted by: Guest on September-03-2021

Code answers related to "is there an algorithm to create a truly random password"

Browse Popular Code Answers by Language