Class Decrypt

  • All Implemented Interfaces:
    java.util.concurrent.Callable<java.lang.Integer>

    public final class Decrypt
    extends java.lang.Object
    implements java.util.concurrent.Callable<java.lang.Integer>
    This will read a document from the filesystem, decrypt it and and then write the result to the filesystem.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String alias  
      private java.io.File infile  
      private java.lang.String keyStore  
      private java.io.File outfile  
      private java.lang.String password  
      private java.io.PrintStream SYSERR  
    • Constructor Summary

      Constructors 
      Constructor Description
      Decrypt()
      Constructor.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Integer call()  
      static void main​(java.lang.String[] args)
      This is the entry point for the application.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • SYSERR

        private final java.io.PrintStream SYSERR
      • alias

        private java.lang.String alias
      • keyStore

        private java.lang.String keyStore
      • password

        private java.lang.String password
      • infile

        private java.io.File infile
      • outfile

        private java.io.File outfile
    • Constructor Detail

      • Decrypt

        public Decrypt()
        Constructor.
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
        This is the entry point for the application.
        Parameters:
        args - The command-line arguments.
      • call

        public java.lang.Integer call()
        Specified by:
        call in interface java.util.concurrent.Callable<java.lang.Integer>