com.fitbur.bouncycastle.openssl.jcajce.JcaPKCS8Generator Maven / Gradle / Ivy
package com.fitbur.bouncycastle.openssl.jcajce;
import java.security.PrivateKey;
import com.fitbur.bouncycastle.asn1.pkcs.PrivateKeyInfo;
import com.fitbur.bouncycastle.openssl.PKCS8Generator;
import com.fitbur.bouncycastle.operator.OutputEncryptor;
import com.fitbur.bouncycastle.util.io.pem.PemGenerationException;
public class JcaPKCS8Generator
extends PKCS8Generator
{
public JcaPKCS8Generator(PrivateKey key, OutputEncryptor encryptor)
throws PemGenerationException
{
super(PrivateKeyInfo.getInstance(key.getEncoded()), encryptor);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy