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