In java,
If I run below code, pwd value exists all over the memory because byte array value is copied to digest method which also copies the value to some other methods.
import java.security.MessageDigest
byte[] pwd = "some_pwd".getBytes();
MessageDigest md = MessageDigest.getInstance("SHA");
for (int i = 0; i < 100; i++) {
byte[] hash = md.digest(pwd);
}
Memory dump software shows the password value which my customer does not like.
I checked that byte[] is copied by value from method to method.
Is there anyway to protect the important byte array value ?
Password text should preferably not be passed as String, but let's assume this is an example:
Then ensure the bytes do not occur in the strings for the test.
And then the solution:
Now the MessageDigest cannot maintain a copy of the array on the call to digest.
If you do not want to even have the pwd array, you would need to just take a char/byte at a time from the password field.