encryption/src/main/java/org/apache/solr/encryption/crypto/DecryptingInputStream.java [95:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                               long position,
                               byte[] iv,
                               byte[] key,
                               AesCtrEncrypterFactory factory,
                               int bufferCapacity)
    throws IOException {
    if (position < 0) {
      throw new IllegalArgumentException("Invalid position " + position);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



encryption/src/main/java/org/apache/solr/encryption/crypto/EncryptingOutputStream.java [94:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                long position,
                                byte[] iv,
                                byte[] key,
                                AesCtrEncrypterFactory factory,
                                int bufferCapacity)
    throws IOException {
    if (position < 0) {
      throw new IllegalArgumentException("Invalid position " + position);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



