public class EcmaDecryptor extends Decryptor
DEFAULT_PASSWORD
Constructor and Description |
---|
EcmaDecryptor(EncryptionInfo info) |
Modifier and Type | Method and Description |
---|---|
InputStream |
getDataStream(DirectoryNode dir)
Return a stream with decrypted data.
|
long |
getLength()
Returns the length of the encytpted data that can be safely read with
Decryptor.getDataStream(org.zkoss.poi.poifs.filesystem.DirectoryNode) . |
boolean |
verifyPassword(String password) |
getBlockSize, getDataStream, getDataStream, getInstance, hashPassword
public EcmaDecryptor(EncryptionInfo info)
public boolean verifyPassword(String password) throws GeneralSecurityException
verifyPassword
in class Decryptor
GeneralSecurityException
public InputStream 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 Decryptor
dir
- the node to read fromIOException
GeneralSecurityException
public long getLength()
Decryptor
Decryptor.getDataStream(org.zkoss.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.zkoss.poi.poifs.filesystem.DirectoryNode)
,
an attempt to call getLength() prior to getDataStream() will result in IllegalStateException.
Copyright © 2020. All rights reserved.