Package org.apache.poi.hssf.record.crypto

Examples of org.apache.poi.hssf.record.crypto.Biff8DecryptingStream


  public RecordInputStream(InputStream in, Biff8EncryptionKey key, int initialOffset) throws RecordFormatException {
    if (key == null) {
      _dataInput = getLEI(in);
      _bhi = new SimpleHeaderInput(in);
    } else {
      Biff8DecryptingStream bds = new Biff8DecryptingStream(in, initialOffset, key);
      _bhi = bds;
      _dataInput = bds;
    }
    _nextSid = readNextSid();
  }
View Full Code Here


  public RecordInputStream(InputStream in, Biff8EncryptionKey key, int initialOffset) throws RecordFormatException {
    if (key == null) {
      _dataInput = getLEI(in);
      _bhi = new SimpleHeaderInput(in);
    } else {
      Biff8DecryptingStream bds = new Biff8DecryptingStream(in, initialOffset, key);
      _bhi = bds;
      _dataInput = bds;
    }
    _nextSid = readNextSid();
  }
View Full Code Here

  public RecordInputStream(InputStream in, Biff8EncryptionKey key, int initialOffset) throws RecordFormatException {
    if (key == null) {
      _dataInput = getLEI(in);
      _bhi = new SimpleHeaderInput(in);
    } else {
      Biff8DecryptingStream bds = new Biff8DecryptingStream(in, initialOffset, key);
      _bhi = bds;
      _dataInput = bds;
    }
    _nextSid = readNextSid();
  }
View Full Code Here

TOP

Related Classes of org.apache.poi.hssf.record.crypto.Biff8DecryptingStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.