I\'m looking for a way of getting an SHA-1 checksum with a Java byte array as the message.
Should I use a third party tool or is there something built in to the JVM
You can do it yourself but I would recommend to use a library that has been proven to work, like Commons Codec. The class DigestUtils has several methods to calculate hashes.
DigestUtils