encryption/src/main/java/org/apache/solr/encryption/crypto/DecryptingIndexInput.java [225:231]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    while (length > 0) {
      // Transfer decrypted bytes from outBuffer.
      int outRemaining = outSize - outPos;
      if (outRemaining > 0) {
        if (length <= outRemaining) {
          System.arraycopy(outBuffer, outPos, b, offset, length);
          outPos += length;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



encryption/src/main/java/org/apache/solr/encryption/crypto/DecryptingInputStream.java [159:165]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    while (length > 0) {
      // Transfer decrypted bytes from outBuffer.
      int outRemaining = outSize - outPos;
      if (outRemaining > 0) {
        if (length <= outRemaining) {
          System.arraycopy(outBuffer, outPos, b, offset, length);
          outPos += length;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



