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