Return how much bytes can be read out of the encrypted data. Be aware that this method will
not increase the readerIndex of the given {@link ByteBuffer}.
@param buffers The {@link ByteBuffer}s to read from. Be aware that they must have at least
{@link org.conscrypt.NativeConstants#SSL3_RT_HEADER_LENGTH} bytes to read, otherwise it will
throw an {@link IllegalArgumentException}.
@return length The length of the encrypted packet that is included in the buffer. This will
return {@code -1} if the given {@link ByteBuffer} is not encrypted at all.
@throws IllegalArgumentException Is thrown if the given {@link ByteBuffer} has not at least
{@link org.conscrypt.NativeConstants#SSL3_RT_HEADER_LENGTH} bytes to read.
Return how much bytes can be read out of the encrypted data. Be aware that this method will not increase the readerIndex of the given {@link ByteBuffer}.
@param buffers The {@link ByteBuffer}s to read from. Be aware that they must have at least {@link org.conscrypt.NativeConstants#SSL3_RT_HEADER_LENGTH} bytes to read, otherwise it will throw an {@link IllegalArgumentException}. @return length The length of the encrypted packet that is included in the buffer. This will return {@code -1} if the given {@link ByteBuffer} is not encrypted at all. @throws IllegalArgumentException Is thrown if the given {@link ByteBuffer} has not at least {@link org.conscrypt.NativeConstants#SSL3_RT_HEADER_LENGTH} bytes to read.