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