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
The initialization values for AES/CBC should be secure random sequence, not hardcoded text to ensure that the same messages are not encrypted the same (revealing equality to an attacker).
A possible fix is to use SecureRandom in
protected IvParameterSpec getIv()
The text was updated successfully, but these errors were encountered:
The initialization values for AES/CBC should be secure random sequence, not hardcoded text to ensure that the same messages are not encrypted the same (revealing equality to an attacker).
A possible fix is to use SecureRandom in
protected IvParameterSpec getIv()
The text was updated successfully, but these errors were encountered: