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
Using Math.random() here seems wrong given it's not suited for cryptographic purposes
Math.random()
https://github.com/vector-im/chatterbox/blob/3c8df045579bce9682bd03e44b0e86f6fbb6a8d6/src/random.ts#L17-L29
I haven't looked into it very deeply, but it seems to me this is actually used for stuff that should use cryptographically strong random values
https://github.com/vector-im/chatterbox/blob/3c8df045579bce9682bd03e44b0e86f6fbb6a8d6/src/viewmodels/AccountSetupViewModel.ts#L40-L62
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
Math.random()
here seems wrong given it's not suited for cryptographic purposeshttps://github.com/vector-im/chatterbox/blob/3c8df045579bce9682bd03e44b0e86f6fbb6a8d6/src/random.ts#L17-L29
I haven't looked into it very deeply, but it seems to me this is actually used for stuff that should use cryptographically strong random values
https://github.com/vector-im/chatterbox/blob/3c8df045579bce9682bd03e44b0e86f6fbb6a8d6/src/viewmodels/AccountSetupViewModel.ts#L40-L62
The text was updated successfully, but these errors were encountered: