Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pg/src/main/java/org/bouncycastle/bcpg/CompressionAlgorithmTags.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/bcpg/CompressionAlgorithmTags.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/pg/src/main/java/org/bouncycastle/bcpg/CompressionAlgorithmTags.java b/pg/src/main/java/org/bouncycastle/bcpg/CompressionAlgorithmTags.java
deleted file mode 100644
index 0e947d54..00000000
--- a/pg/src/main/java/org/bouncycastle/bcpg/CompressionAlgorithmTags.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.bouncycastle.bcpg;
-
-/**
- * Basic tags for compression algorithms
- */
-public interface CompressionAlgorithmTags
-{
- /** No compression. */
- public static final int UNCOMPRESSED = 0;
-
- /** ZIP (RFC 1951) compression. Unwrapped DEFLATE. */
- public static final int ZIP = 1;
-
- /** ZLIB (RFC 1950) compression. DEFLATE with a wrapper for better error detection. */
- public static final int ZLIB = 2;
-
- /** BZIP2 compression. Better compression than ZIP but much slower to compress and decompress. */
- public static final int BZIP2 = 3;
-}