main.com.appmattus.certificatetransparency.internal.serialization.InputStreamExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of certificatetransparency Show documentation
Show all versions of certificatetransparency Show documentation
Certificate transparency for Android and Java
/*
* Copyright 2021 Appmattus Limited
* Copyright 2019 Babylon Partners Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Code derived from https://github.com/google/certificate-transparency-java
*
* File modified by Appmattus Limited
* See: https://github.com/appmattus/certificatetransparency/compare/e3d469df9be35bcbf0f564d32ca74af4e5ca4ae5...main
*/
package com.appmattus.certificatetransparency.internal.serialization
import java.io.IOException
import java.io.InputStream
private const val MAX_NUMBER_BYTE_LENGTH = 8
private const val BITS_IN_BYTE = 8
/**
* Read a number of numBytes bytes (Assuming MSB first).
*
* @receiver byte stream of binary encoding
* @property numBytes exact number of bytes representing this number.
* @return a number of at most 2^numBytes
* @throws IOException
*/
internal fun InputStream.readNumber(numBytes: Int): Long {
require(numBytes <= MAX_NUMBER_BYTE_LENGTH) { "Could not read a number of more than 8 bytes." }
var toReturn: Long = 0
for (i in 0 until numBytes) {
val valRead = read()
if (valRead < 0) {
throw IOException("Missing length bytes: Expected $numBytes, got $i.")
}
toReturn = toReturn shl BITS_IN_BYTE or valRead.toLong()
}
return toReturn
}
/**
* Reads a fixed-length byte array.
*
* @receiver byte stream of binary encoding
* @property dataLength exact data length.
* @return read byte array.
* @throws IOException if the data stream is too short.
*/
internal fun InputStream.readFixedLength(dataLength: Int): ByteArray {
val toReturn = ByteArray(dataLength)
val bytesRead = read(toReturn)
if (bytesRead < dataLength) {
throw IOException("Not enough bytes: Expected $dataLength, got $bytesRead.")
}
return toReturn
}
/**
* Reads a variable-length byte array with a maximum length. The length is read (based on the
* number of bytes needed to represent the max data length) then the byte array itself.
*
* @receiver byte stream of binary encoding
* @property maxDataLength Maximal data length.
* @return read byte array.
* @throws IOException if the data stream is too short.
*/
internal fun InputStream.readVariableLength(maxDataLength: Int): ByteArray {
val bytesForDataLength = Deserializer.bytesForDataLength(maxDataLength)
val dataLength = readNumber(bytesForDataLength).toInt()
val rawData = ByteArray(dataLength)
val bytesRead: Int
try {
bytesRead = read(rawData)
} catch (e: IOException) {
// Note: A finer-grained exception type should be thrown if the client ever cares to handle transient I/O errors.
throw IOException("Error while reading variable-length data", e)
}
if (bytesRead != dataLength) {
throw IOException("Incomplete data. Expected $dataLength bytes, had $bytesRead.")
}
return rawData
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy