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