aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/operator/jcajce/JcaPGPPrivateKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/operator/jcajce/JcaPGPPrivateKey.java')
-rw-r--r--libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/operator/jcajce/JcaPGPPrivateKey.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/operator/jcajce/JcaPGPPrivateKey.java b/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/operator/jcajce/JcaPGPPrivateKey.java
deleted file mode 100644
index a22f4561e..000000000
--- a/libraries/spongycastle/pg/src/main/java/org/spongycastle/openpgp/operator/jcajce/JcaPGPPrivateKey.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.spongycastle.openpgp.operator.jcajce;
-
-import java.security.PrivateKey;
-
-import org.spongycastle.openpgp.PGPPrivateKey;
-import org.spongycastle.openpgp.PGPPublicKey;
-
-/**
- * A JCA PrivateKey carrier. Use this one if you're dealing with a hardware adapter.
- */
-public class JcaPGPPrivateKey
- extends PGPPrivateKey
-{
- private final PrivateKey privateKey;
-
- public JcaPGPPrivateKey(long keyID, PrivateKey privateKey)
- {
- super(keyID, null, null);
-
- this.privateKey = privateKey;
- }
-
- public JcaPGPPrivateKey(PGPPublicKey pubKey, PrivateKey privateKey)
- {
- super(pubKey.getKeyID(), pubKey.getPublicKeyPacket(), null);
-
- this.privateKey = privateKey;
- }
-
- public PrivateKey getPrivateKey()
- {
- return privateKey;
- }
-}