You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚠️random.randint() is used to generate pseudo numbers for non security sensitive applications, random() is being used in this program and it is a security risk.
"Warning The pseudo-random generators of this module should not be used for security purposes. Use os.urandom() or SystemRandom if you require a cryptographically secure pseudo-random number generator." https://docs.python.org/2/library/random.html
The text was updated successfully, but these errors were encountered:
random.randint()
is used to generate pseudo numbers for non security sensitive applications,random()
is being used in this program and it is a security risk."Warning The pseudo-random generators of this module should not be used for security purposes. Use
os.urandom()
orSystemRandom
if you require a cryptographically secure pseudo-random number generator." https://docs.python.org/2/library/random.htmlThe text was updated successfully, but these errors were encountered: