We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From https://github.com/JWWeatherman/yeticold/blob/master/appyeticold.py
v.rpcpsw = str(random.randrange(0,1000000)) v.settings = {"rpc_username": "rpcuser","rpc_password": v.rpcpsw, "rpc_host": "127.0.0.1","rpc_port": 8332,"address_chunk": 100} v.wallet_template = "http://{rpc_username}:{rpc_password}@{rpc_host}:{rpc_port}/wallet/{wallet_name}"
From https://docs.python.org/3/library/random.html
###The pseudo-random generators of this module should not be used for security purposes. For security or cryptographic uses, see the secrets module.
The secrets module should be used for passwords and keys, random is designed to be fast for simulation purposes but can be predicable.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From
https://github.com/JWWeatherman/yeticold/blob/master/appyeticold.py
From
https://docs.python.org/3/library/random.html
Warning
###The pseudo-random generators of this module should not be used for security purposes. For security or cryptographic uses, see the secrets module.
The secrets module should be used for passwords and keys, random is designed to be fast for simulation purposes but can be predicable.
The text was updated successfully, but these errors were encountered: