I followed the steps here:
Enabling a plugpoint for custom password encryption
In particular, implementing the interface given here:
Plug point for custom password encryption
However, I’m using SHA-256 encryption, i.e.
import java.security.MessageDigest;
MessageDigest messageDigest = MessageDigest.getInstance("SHA-256");
But, how can I implement a decrypt method for SHA-256? I thought the whole idea was that SHA-256 can’t be decrypted?
SHA-256 does not decrypt. Use AES.