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/openpgp/bc/BcPGPPublicKeyRingCollection.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/openpgp/bc/BcPGPPublicKeyRingCollection.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/pg/src/main/java/org/bouncycastle/openpgp/bc/BcPGPPublicKeyRingCollection.java b/pg/src/main/java/org/bouncycastle/openpgp/bc/BcPGPPublicKeyRingCollection.java
deleted file mode 100644
index 20e09bca..00000000
--- a/pg/src/main/java/org/bouncycastle/openpgp/bc/BcPGPPublicKeyRingCollection.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package org.bouncycastle.openpgp.bc;
-
-import java.io.ByteArrayInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.util.Collection;
-
-import org.bouncycastle.openpgp.PGPException;
-import org.bouncycastle.openpgp.PGPPublicKeyRingCollection;
-import org.bouncycastle.openpgp.operator.bc.BcKeyFingerprintCalculator;
-
-public class BcPGPPublicKeyRingCollection
- extends PGPPublicKeyRingCollection
-{
- public BcPGPPublicKeyRingCollection(byte[] encoding)
- throws IOException, PGPException
- {
- this(new ByteArrayInputStream(encoding));
- }
-
- public BcPGPPublicKeyRingCollection(InputStream in)
- throws IOException, PGPException
- {
- super(in, new BcKeyFingerprintCalculator());
- }
-
- public BcPGPPublicKeyRingCollection(Collection collection)
- throws IOException, PGPException
- {
- super(collection);
- }
-}