Is it possible to retrieve the original value of data that has been hashed? Can the hashcode be reversed to reveal the real value of the data?
String ida = new String(txtID.getText().toString());
int idb = ida.hashCode();
codeD.setText("result: " + ida);
I have already obtained the hashcode of the user input (txtID), but now I am looking for a way to extract the actual value that was hashed without referring back to the variable ida.