DEFAULT_PASSWORD, DEFAULT_POIFS_ENTRY| Modifier and Type | Method and Description |
|---|---|
CryptoAPIDecryptor |
clone() |
ChunkedCipherInputStream |
getDataStream(DirectoryNode dir)
Return a stream with decrypted data.
|
ChunkedCipherInputStream |
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). |
POIFSFileSystem |
getSummaryEntries(DirectoryNode root,
String encryptedStream)
Decrypt the Document-/SummaryInformation and other optionally streams.
|
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 ChunkedCipherInputStream 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 POIFSFileSystem getSummaryEntries(DirectoryNode root, String encryptedStream) throws IOException, GeneralSecurityException
Summary entries are only encrypted within cryptoapi encrypted files. Binary RC4 encrypted files use non-encrypted/default property sets
root - root directory node of the OLE file containing the encrypted propertiesencryptedStream - name of the encrypted stream -
"encryption" for HSSF/HWPF, "encryptedStream" (or encryptedSummary?) for HSLFIOExceptionGeneralSecurityExceptionpublic 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.
getLength in class DecryptorgetDataStream(DirectoryNode)public void setChunkSize(int chunkSize)
DecryptorsetChunkSize in class DecryptorchunkSize - the chunk size, i.e. the block size with the same encryption keypublic CryptoAPIDecryptor clone() throws CloneNotSupportedException
clone in class DecryptorCloneNotSupportedExceptionCopyright © 2010 - 2020 Adobe. All Rights Reserved