| Package | Description |
|---|---|
| com.entrust.toolkit.archive |
Contains classes for reading and writing files in the legacy Entrust Archive format.
|
| Modifier and Type | Method and Description |
|---|---|
PemOptions |
ArchiveResults.getArchiveOptions()
Returns the options used when the Archive was created.
|
PemOptions |
ArchiveResultsMac.getArchiveOptions()
Returns the options used when the Archive was created.
|
PemOptions |
ArchiveInputStream.getFileProtectionOptions()
Returns the options used when protecting the Archive.
|
PemOptions |
ArchiveInputStreamMac.getFileProtectionOptions()
Returns the options used when protecting the Archive.
|
PemOptions |
PemParsedHeader.getOptions()
Returns the options used to protect the message.
|
| Constructor and Description |
|---|
ArchiveCreator(User user,
java.io.File toProtect,
PemOptions pemOptions,
LargeFileOptions largeFileOptions,
java.io.OutputStream outStream)
This constructor provides support for protection of large files (larger
than available memory) with Entrust Archive format.
|
ArchiveCreator(User user,
java.io.File toProtect,
PemOptions options,
java.io.OutputStream outStream)
This constructor only supports protection of small files (smaller than
available memory) with Entrust Archive format.
|
PemOptions(PemOptions src)
Copy Constructor for PemOptions.
|
PemOutputStream(java.security.PrivateKey signingKey,
X509Certificate verificationCertificate,
X509Certificate originatorCertificate,
PemOptions options,
java.io.OutputStream outStream,
java.io.OutputStream headerStream)
Creates a PEM message, signed with the given signing key, with the given
certificates used as those of the originator.
|
PemOutputStream(User user,
PemOptions options,
java.io.OutputStream outStream)
Create a PemOutputStream that does not write the header.
|
PemOutputStream(User user,
PemOptions options,
java.io.OutputStream outStream,
java.io.OutputStream headerStream)
Create a PemOutputStream that writes the protected data and header
to separate streams.
|