Class Digest


  • public class Digest
    extends java.lang.Object
    A minimal command line to run digest over files, directories or a string
    Since:
    1.11
    See Also:
    main(String[])
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static void main​(java.lang.String[] args)
      Runs the digest algorithm in args[0] on the file in args[1].
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
                         throws java.io.IOException
        Runs the digest algorithm in args[0] on the file in args[1]. If there is no args[1], use standard input.

        The algorithm can also be ALL or * to output one line for each known algorithm.

        Parameters:
        args - args[0] is one of MessageDigestAlgorithms name, MessageDigest name, ALL, or *. args[1+] is a FILE/DIRECTORY/String.
        Throws:
        java.io.IOException - if an error occurs
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object