// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.operator;

import org.bouncycastle.asn1.x509.AlgorithmIdentifier;

public abstract class AsymmetricKeyWrapper implements KeyWrapper
{
    private AlgorithmIdentifier algorithmId;
    
    protected AsymmetricKeyWrapper(final AlgorithmIdentifier algorithmId) {
        this.algorithmId = algorithmId;
    }
    
    @Override
    public AlgorithmIdentifier getAlgorithmIdentifier() {
        return this.algorithmId;
    }
}
