org.bouncycastle.pkcs.EncryptedPrivateKeyInfoHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail Show documentation
Show all versions of bcmail Show documentation
A patched bouncycastle-mail
The newest version!
package org.bouncycastle.pkcs;
import java.io.IOException;
import org.bouncycastle.asn1.pkcs.EncryptedPrivateKeyInfo;
/**
* Holding class for a PKCS#8 EncryptedPrivateKeyInfo structure.
*/
public class EncryptedPrivateKeyInfoHolder
{
private EncryptedPrivateKeyInfo encryptedPrivateKeyInfo;
public EncryptedPrivateKeyInfoHolder(EncryptedPrivateKeyInfo encryptedPrivateKeyInfo)
{
this.encryptedPrivateKeyInfo = encryptedPrivateKeyInfo;
}
public EncryptedPrivateKeyInfo toASN1Structure()
{
return encryptedPrivateKeyInfo;
}
public byte[] getEncoded()
throws IOException
{
return encryptedPrivateKeyInfo.getEncoded();
}
}