DEFAULT_PASSWORD, DEFAULT_POIFS_ENTRY| Modifier and Type | Method and Description |
|---|---|
XORDecryptor |
clone() |
ChunkedCipherInputStream |
getDataStream(DirectoryNode dir)
Return a stream with decrypted data.
|
InputStream |
getDataStream(InputStream stream,
int size,
int initialPos)
Wraps a stream for decryption
|
long |
getLength()
Returns the length of the encrypted data that can be safely read with
Decryptor.getDataStream(org.apache.poi.poifs.filesystem.DirectoryNode). |
Cipher |
initCipherForBlock(Cipher cipher,
int block)
Initializes a cipher object for a given block index for encryption
|
void |
setChunkSize(int chunkSize)
Sets the chunk size of the data stream.
|
boolean |
verifyPassword(String password) |
getDataStream, getEncryptionInfo, getInstance, getIntegrityHmacKey, getIntegrityHmacValue, getSecretKey, getVerifier, setEncryptionInfopublic boolean verifyPassword(String password)
verifyPassword in class Decryptorpublic Cipher initCipherForBlock(Cipher cipher, int block) throws GeneralSecurityException
DecryptorinitCipherForBlock in class Decryptorcipher - may be null, otherwise the given instance is reset to the new block indexblock - the block index, e.g. the persist/slide id (hslf)GeneralSecurityException - if the cipher can't be initializedpublic ChunkedCipherInputStream getDataStream(DirectoryNode dir) throws IOException, GeneralSecurityException
Decryptor
Use Decryptor.getLength() to get the size of that data that can be safely read from the stream.
Just reading to the end of the input stream is not sufficient because there are
normally padding bytes that must be discarded
getDataStream in class Decryptordir - the node to read fromIOExceptionGeneralSecurityExceptionpublic InputStream getDataStream(InputStream stream, int size, int initialPos) throws IOException, GeneralSecurityException
DecryptorAs we are handling streams and don't know the total length beforehand, it's the callers duty to care for the length of the entries.
getDataStream in class Decryptorstream - the stream to be wrappedinitialPos - initial/current byte position within the streamIOExceptionGeneralSecurityExceptionpublic long getLength()
DecryptorDecryptor.getDataStream(org.apache.poi.poifs.filesystem.DirectoryNode).
Just reading to the end of the input stream is not sufficient because there are
normally padding bytes that must be discarded
The length variable is initialized in Decryptor.getDataStream(org.apache.poi.poifs.filesystem.DirectoryNode),
an attempt to call getLength() prior to getDataStream() will result in IllegalStateException.
public void setChunkSize(int chunkSize)
DecryptorsetChunkSize in class DecryptorchunkSize - the chunk size, i.e. the block size with the same encryption keypublic XORDecryptor clone() throws CloneNotSupportedException
clone in class DecryptorCloneNotSupportedExceptionCopyright © 2010 - 2020 Adobe. All Rights Reserved