public interface IOBScriptPGPHandler
Modifier and Type | Method and Description |
---|---|
boolean |
packageMessage()
Packages the payload in the outbound FTP session with PGP processing
|
boolean |
setCompressionAlgo(java.lang.String algo)
Sets the algorithms of compression
|
boolean |
setFormat(java.lang.String format)
Sets the format of the resulting payload after PGP processing
|
void |
setPGPOptions(boolean sign,
boolean enc,
boolean comp)
Sets the PGP process options for signing, encryption and compression
|
void setPGPOptions(boolean sign, boolean enc, boolean comp)
sign
- true if signing is required, flase otherwise.enc
- true if encryption is required, false otherwise.comp
- true if compression is required, false otherwise.boolean setFormat(java.lang.String format)
format
- "armored" to ask the format of ASCII Armored, or "binary" to ask binary formatboolean setCompressionAlgo(java.lang.String algo)
algo
- "ZLIB" or "ZIB"; if not called, then no compression happensboolean packageMessage()