Uses of Class
org.pgpainless.algorithm.CompressionAlgorithm
- 
Packages that use CompressionAlgorithm Package Description org.pgpainless.algorithm Enums which map to OpenPGP's algorithm IDs.org.pgpainless.decryption_verification Classes used to decryption and verification of OpenPGP encrypted / signed data.org.pgpainless.encryption_signing Classes used to encrypt or sign data using OpenPGP.org.pgpainless.key.generation Classes related to OpenPGP key generation.org.pgpainless.key.info Extract information from PGPKeyRings.org.pgpainless.policy Policy regarding used algorithms.org.pgpainless.signature.subpackets Classes related to OpenPGP signatures. - 
- 
Uses of CompressionAlgorithm in org.pgpainless.algorithm
Methods in org.pgpainless.algorithm that return CompressionAlgorithm Modifier and Type Method Description static CompressionAlgorithmCompressionAlgorithm. fromId(int id)Return theCompressionAlgorithmvalue that corresponds to the provided numerical id.static CompressionAlgorithmCompressionAlgorithm. valueOf(String name)Returns the enum constant of this type with the specified name.static CompressionAlgorithm[]CompressionAlgorithm. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.pgpainless.algorithm that return types with arguments of type CompressionAlgorithm Modifier and Type Method Description Set<CompressionAlgorithm>AlgorithmSuite. getCompressionAlgorithms() - 
Uses of CompressionAlgorithm in org.pgpainless.decryption_verification
Methods in org.pgpainless.decryption_verification that return CompressionAlgorithm Modifier and Type Method Description CompressionAlgorithmOpenPgpMetadata. getCompressionAlgorithm()Return theCompressionAlgorithmthat was used to compress the message.Methods in org.pgpainless.decryption_verification with parameters of type CompressionAlgorithm Modifier and Type Method Description OpenPgpMetadata.BuilderOpenPgpMetadata.Builder. setCompressionAlgorithm(CompressionAlgorithm algorithm)Constructors in org.pgpainless.decryption_verification with parameters of type CompressionAlgorithm Constructor Description OpenPgpMetadata(Set<Long> recipientKeyIds, SubkeyIdentifier decryptionKey, SessionKey sessionKey, CompressionAlgorithm algorithm, List<SignatureVerification> verifiedInbandSignatures, List<SignatureVerification.Failure> invalidInbandSignatures, List<SignatureVerification> verifiedDetachedSignatures, List<SignatureVerification.Failure> invalidDetachedSignatures, String fileName, Date modificationDate, StreamEncoding fileEncoding) - 
Uses of CompressionAlgorithm in org.pgpainless.encryption_signing
Methods in org.pgpainless.encryption_signing that return CompressionAlgorithm Modifier and Type Method Description CompressionAlgorithmEncryptionResult. getCompressionAlgorithm()Return the compression algorithm that was used to compress the message before encryption/signing.CompressionAlgorithmProducerOptions. getCompressionAlgorithmOverride()static CompressionAlgorithmEncryptionBuilder. negotiateCompressionAlgorithm(ProducerOptions producerOptions)Methods in org.pgpainless.encryption_signing with parameters of type CompressionAlgorithm Modifier and Type Method Description ProducerOptionsProducerOptions. overrideCompressionAlgorithm(CompressionAlgorithm compressionAlgorithm)Override which compression algorithm shall be used.EncryptionResult.BuilderEncryptionResult.Builder. setCompressionAlgorithm(CompressionAlgorithm compressionAlgorithm) - 
Uses of CompressionAlgorithm in org.pgpainless.key.generation
Methods in org.pgpainless.key.generation with parameters of type CompressionAlgorithm Modifier and Type Method Description KeySpecBuilderKeySpecBuilder. overridePreferredCompressionAlgorithms(CompressionAlgorithm... compressionAlgorithms)KeySpecBuilderKeySpecBuilderInterface. overridePreferredCompressionAlgorithms(CompressionAlgorithm... compressionAlgorithms) - 
Uses of CompressionAlgorithm in org.pgpainless.key.info
Methods in org.pgpainless.key.info that return types with arguments of type CompressionAlgorithm Modifier and Type Method Description Set<CompressionAlgorithm>KeyAccessor. getPreferredCompressionAlgorithms()Return preferred compression algorithms.Set<CompressionAlgorithm>KeyRingInfo. getPreferredCompressionAlgorithms()Set<CompressionAlgorithm>KeyRingInfo. getPreferredCompressionAlgorithms(long keyId)Set<CompressionAlgorithm>KeyRingInfo. getPreferredCompressionAlgorithms(String userId) - 
Uses of CompressionAlgorithm in org.pgpainless.policy
Methods in org.pgpainless.policy that return CompressionAlgorithm Modifier and Type Method Description CompressionAlgorithmPolicy.CompressionAlgorithmPolicy. defaultCompressionAlgorithm()Methods in org.pgpainless.policy with parameters of type CompressionAlgorithm Modifier and Type Method Description booleanPolicy.CompressionAlgorithmPolicy. isAcceptable(CompressionAlgorithm compressionAlgorithm)Constructors in org.pgpainless.policy with parameters of type CompressionAlgorithm Constructor Description CompressionAlgorithmPolicy(CompressionAlgorithm defaultCompressionAlgorithm, List<CompressionAlgorithm> acceptableCompressionAlgorithms)Constructor parameters in org.pgpainless.policy with type arguments of type CompressionAlgorithm Constructor Description CompressionAlgorithmPolicy(CompressionAlgorithm defaultCompressionAlgorithm, List<CompressionAlgorithm> acceptableCompressionAlgorithms) - 
Uses of CompressionAlgorithm in org.pgpainless.signature.subpackets
Methods in org.pgpainless.signature.subpackets that return types with arguments of type CompressionAlgorithm Modifier and Type Method Description static Set<CompressionAlgorithm>SignatureSubpacketsUtil. parsePreferredCompressionAlgorithms(org.bouncycastle.openpgp.PGPSignature signature)Return the preferredCompressionAlgorithmsas present in the signature.Methods in org.pgpainless.signature.subpackets with parameters of type CompressionAlgorithm Modifier and Type Method Description SelfSignatureSubpacketsSelfSignatureSubpackets. setPreferredCompressionAlgorithms(CompressionAlgorithm... algorithms)SignatureSubpacketsSignatureSubpackets. setPreferredCompressionAlgorithms(CompressionAlgorithm... algorithms)Method parameters in org.pgpainless.signature.subpackets with type arguments of type CompressionAlgorithm Modifier and Type Method Description SelfSignatureSubpacketsSelfSignatureSubpackets. setPreferredCompressionAlgorithms(boolean isCritical, Set<CompressionAlgorithm> algorithms)SelfSignatureSubpacketsSelfSignatureSubpackets. setPreferredCompressionAlgorithms(Set<CompressionAlgorithm> algorithms)SignatureSubpacketsSignatureSubpackets. setPreferredCompressionAlgorithms(boolean isCritical, Set<CompressionAlgorithm> algorithms)SignatureSubpacketsSignatureSubpackets. setPreferredCompressionAlgorithms(Set<CompressionAlgorithm> algorithms) 
 -