Package org.apache.iceberg.encryption
Class AesGcmInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.iceberg.io.SeekableInputStream
-
- org.apache.iceberg.encryption.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 intavailable()voidclose()longgetPos()Return the current position in the InputStream.intread()intread(byte[] b, int off, int len)voidseek(long newPos)Seek to a new position in the InputStream.longskip(long n)
-
-
-
Method Detail
-
available
public int available()
- Overrides:
availablein classjava.io.InputStream
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException- Overrides:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
seek
public void seek(long newPos) throws java.io.IOExceptionDescription copied from class:SeekableInputStreamSeek to a new position in the InputStream.- Specified by:
seekin classSeekableInputStream- 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:
skipin classjava.io.InputStream
-
getPos
public long getPos() throws java.io.IOExceptionDescription copied from class:SeekableInputStreamReturn the current position in the InputStream.- Specified by:
getPosin classSeekableInputStream- 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:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.InputStream- Throws:
java.io.IOException
-
-