Class AesGcmInputStream

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable

    public class AesGcmInputStream
    extends SeekableInputStream
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int available()  
      void close()  
      long getPos()
      Return the current position in the InputStream.
      int read()  
      int read​(byte[] b, int off, int len)  
      void seek​(long newPos)
      Seek to a new position in the InputStream.
      long skip​(long n)  
      • Methods inherited from class java.io.InputStream

        mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, transferTo
      • Methods inherited from class java.lang.Object

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

      • available

        public int available()
        Overrides:
        available in class java.io.InputStream
      • read

        public int read​(byte[] b,
                        int off,
                        int len)
                 throws java.io.IOException
        Overrides:
        read in class java.io.InputStream
        Throws:
        java.io.IOException
      • seek

        public void seek​(long newPos)
                  throws java.io.IOException
        Description copied from class: SeekableInputStream
        Seek to a new position in the InputStream.
        Specified by:
        seek in class SeekableInputStream
        Parameters:
        newPos - the new position to seek to
        Throws:
        java.io.IOException - If the underlying stream throws IOException
      • skip

        public long skip​(long n)
        Overrides:
        skip in class java.io.InputStream
      • getPos

        public long getPos()
                    throws java.io.IOException
        Description copied from class: SeekableInputStream
        Return the current position in the InputStream.
        Specified by:
        getPos in class SeekableInputStream
        Returns:
        current position in bytes from the start of the stream
        Throws:
        java.io.IOException - If the underlying stream throws IOException
      • read

        public int read()
                 throws java.io.IOException
        Specified by:
        read in class java.io.InputStream
        Throws:
        java.io.IOException
      • close

        public void close()
                   throws java.io.IOException
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Overrides:
        close in class java.io.InputStream
        Throws:
        java.io.IOException