I have stored (and encoded) an email password. I have used PasswordEncoder (Spring security).
passwordEncoder.encode(password);
Now I need to decode it in order to use it in javax mail. (the password is used to connect to the email provider(yahoo, gmail, etc).
Is there a way to decode this password?