blob: 3c3aa2fb43f4fd381cd39a710157c495aa03fd8f [file] [log] [blame]
package org.bouncycastle.operator;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
public abstract class AsymmetricKeyUnwrapper
implements KeyUnwrapper
{
private AlgorithmIdentifier algorithmId;
protected AsymmetricKeyUnwrapper(AlgorithmIdentifier algorithmId)
{
this.algorithmId = algorithmId;
}
public AlgorithmIdentifier getAlgorithmIdentifier()
{
return algorithmId;
}
}