Jacksum NoSuchAlgorithmException
问题 I'm trying to use the Jacksum API to generate a Whirlpool hash, but I'm getting a NoSuchAlgorithmException: import java.security.NoSuchAlgorithmException; import jonelo.jacksum.JacksumAPI; import jonelo.jacksum.algorithm.AbstractChecksum; public static String genHash(String inText) { AbstractChecksum checksum = null; checksum = JacksumAPI.getChecksumInstance("whirlpool"); checksum.update(inText.getBytes()); return checksum.getFormattedValue(); } I tried other popular algorithms (sha256, md5)