blob: 08dd94f61b53202bc1b5d60356326e00e3d16088 [file] [log] [blame]
package org.bouncycastle.asn1.pkcs;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERObjectIdentifier;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
public class KeyDerivationFunc
extends AlgorithmIdentifier
{
KeyDerivationFunc(
ASN1Sequence seq)
{
super(seq);
}
public KeyDerivationFunc(
DERObjectIdentifier id,
ASN1Encodable params)
{
super(id, params);
}
}