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 'pkix/src/main/java/org/bouncycastle/openssl/jcajce/JcaPKCS8Generator.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/openssl/jcajce/JcaPKCS8Generator.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/openssl/jcajce/JcaPKCS8Generator.java b/pkix/src/main/java/org/bouncycastle/openssl/jcajce/JcaPKCS8Generator.java
deleted file mode 100644
index 261dcecb..00000000
--- a/pkix/src/main/java/org/bouncycastle/openssl/jcajce/JcaPKCS8Generator.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package org.bouncycastle.openssl.jcajce;
-
-import java.security.PrivateKey;
-
-import org.bouncycastle.asn1.pkcs.PrivateKeyInfo;
-import org.bouncycastle.openssl.PKCS8Generator;
-import org.bouncycastle.operator.OutputEncryptor;
-import org.bouncycastle.util.io.pem.PemGenerationException;
-
-public class JcaPKCS8Generator
- extends PKCS8Generator
-{
- public JcaPKCS8Generator(PrivateKey key, OutputEncryptor encryptor)
- throws PemGenerationException
- {
- super(PrivateKeyInfo.getInstance(key.getEncoded()), encryptor);
- }
-}