package org.spongycastle.operator; import org.spongycastle.asn1.x509.AlgorithmIdentifier; public abstract class SymmetricKeyWrapper implements KeyWrapper { private AlgorithmIdentifier algorithmId; protected SymmetricKeyWrapper(AlgorithmIdentifier algorithmId) { this.algorithmId = algorithmId; } public AlgorithmIdentifier getAlgorithmIdentifier() { return algorithmId; } }