Utility class for creating digests without using a salt or iterating the hash function. This means that digests created by this class will be compatible (and equivalent) to the ones which could be created by the user by directly using a {@link java.security.MessageDigest} object.
This class can be thought of as convenience wrapper for {@link java.security.MessageDigest}, adding thread-safety and a more javabean-like interface to it. These two features enable a more adequate use from an IoC container like Spring.
This class internally holds a {@link StandardByteDigester} configured this way:
This class is thread-safe
@since 1.2 (class existed as org.jasypt.util.MessageDigester since 1.1) @author Daniel Fernández
|
|
|
|