Package com.yubico.internal.util
Class ByteInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- java.io.DataInputStream
-
- com.yubico.internal.util.ByteInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.DataInput,java.lang.AutoCloseable
public class ByteInputStream extends java.io.DataInputStreamProvides an easy way to read a byte array in chunks.
-
-
Constructor Summary
Constructors Constructor Description ByteInputStream(byte[] data)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]read(int numberOfBytes)byte[]readAll()intreadInteger()bytereadSigned()intreadUnsigned()-
Methods inherited from class java.io.DataInputStream
read, read, readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, readUTF, skipBytes
-
Methods inherited from class java.io.FilterInputStream
available, close, mark, markSupported, read, reset, skip
-
-
-
-
Method Detail
-
read
public byte[] read(int numberOfBytes) throws java.io.IOException- Throws:
java.io.IOException
-
readAll
public byte[] readAll() throws java.io.IOException- Throws:
java.io.IOException
-
readInteger
public int readInteger() throws java.io.IOException- Throws:
java.io.IOException
-
readSigned
public byte readSigned() throws java.io.IOException- Throws:
java.io.IOException
-
readUnsigned
public int readUnsigned() throws java.io.IOException- Throws:
java.io.IOException
-
-