com.fitbur.bouncycastle.cert.crmf.EncryptedValueParser Maven / Gradle / Ivy
package com.fitbur.bouncycastle.cert.crmf;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import com.fitbur.bouncycastle.asn1.crmf.EncryptedValue;
import com.fitbur.bouncycastle.asn1.x509.Certificate;
import com.fitbur.bouncycastle.cert.X509CertificateHolder;
import com.fitbur.bouncycastle.operator.InputDecryptor;
import com.fitbur.bouncycastle.util.Strings;
import com.fitbur.bouncycastle.util.io.Streams;
/**
* Parser for EncryptedValue structures.
*/
public class EncryptedValueParser
{
private EncryptedValue value;
private EncryptedValuePadder padder;
/**
* Basic constructor - create a parser to read the passed in value.
*
* @param value the value to be parsed.
*/
public EncryptedValueParser(EncryptedValue value)
{
this.value = value;
}
/**
* Create a parser to read the passed in value, assuming the padder was
* applied to the data prior to encryption.
*
* @param value the value to be parsed.
* @param padder the padder to be used to remove padding from the com.fitburcrypted value..
*/
public EncryptedValueParser(EncryptedValue value, EncryptedValuePadder padder)
{
this.value = value;
this.padder = padder;
}
private byte[] com.fitburcryptValue(ValueDecryptorGenerator com.fitburcGen)
throws CRMFException
{
if (value.getIntendedAlg() != null)
{
throw new UnsupportedOperationException();
}
if (value.getValueHint() != null)
{
throw new UnsupportedOperationException();
}
InputDecryptor com.fitburcryptor = com.fitburcGen.getValueDecryptor(value.getKeyAlg(),
value.getSymmAlg(), value.getEncSymmKey().getBytes());
InputStream dataIn = com.fitburcryptor.getInputStream(new ByteArrayInputStream(
value.getEncValue().getBytes()));
try
{
byte[] data = Streams.readAll(dataIn);
if (padder != null)
{
return padder.getUnpaddedData(data);
}
return data;
}
catch (IOException e)
{
throw new CRMFException("Cannot parse com.fitburcrypted data: " + e.getMessage(), e);
}
}
/**
* Read a X.509 certificate.
*
* @param com.fitburcGen the com.fitburcryptor generator to com.fitburcrypt the encrypted value.
* @return an X509CertificateHolder containing the certificate read.
* @throws CRMFException if the com.fitburcrypted data cannot be parsed, or a com.fitburcryptor cannot be generated.
*/
public X509CertificateHolder readCertificateHolder(ValueDecryptorGenerator com.fitburcGen)
throws CRMFException
{
return new X509CertificateHolder(Certificate.getInstance(com.fitburcryptValue(com.fitburcGen)));
}
/**
* Read a pass phrase.
*
* @param com.fitburcGen the com.fitburcryptor generator to com.fitburcrypt the encrypted value.
* @return a pass phrase as recovered from the encrypted value.
* @throws CRMFException if the com.fitburcrypted data cannot be parsed, or a com.fitburcryptor cannot be generated.
*/
public char[] readPassphrase(ValueDecryptorGenerator com.fitburcGen)
throws CRMFException
{
return Strings.fromUTF8ByteArray(com.fitburcryptValue(com.fitburcGen)).toCharArray();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy