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
GeneratePasswordViewModel.generateRandomPassword() uses java.util.Random -- which is not cryptographically secure -- instead of java.security.SecureRandom.
EncryptionHelper logs plaintext and keys; understandable for debugging but not something that should occur on users' devices.
(Additionally, I noticed the typo "lenght" a few times.)
The text was updated successfully, but these errors were encountered:
Hi! I noticed the following:
GeneratePasswordViewModel.generateRandomPassword()
usesjava.util.Random
-- which is not cryptographically secure -- instead ofjava.security.SecureRandom
.EncryptionHelper
logs plaintext and keys; understandable for debugging but not something that should occur on users' devices.(Additionally, I noticed the typo "lenght" a few times.)
The text was updated successfully, but these errors were encountered: