com.didisoft.pgp
Interface CompressionAlgorithm


public interface CompressionAlgorithm

Interface that lists the supported compression algorithms for OpenPGP encryption.

Example usage

 PGPLib pgp = new PGPLib();
 pgp.setCompression(CompressionAlgorithm.ZLIB);
 

Since:
2.5

Nested Class Summary
static class CompressionAlgorithm.Enum
           
 
Field Summary
static java.lang.String BZIP2
           
static java.lang.String UNCOMPRESSED
          Data is not compressed
static java.lang.String ZIP
           
static java.lang.String ZLIB
           
 

Field Detail

ZLIB

static final java.lang.String ZLIB
See Also:
Constant Field Values

ZIP

static final java.lang.String ZIP
See Also:
Constant Field Values

BZIP2

static final java.lang.String BZIP2
See Also:
Constant Field Values

UNCOMPRESSED

static final java.lang.String UNCOMPRESSED
Data is not compressed

See Also:
Constant Field Values


Copyright © 2006-2017 DidiSoft Ltd. All Rights Reserved.