org.bouncycastle.asn1.pkcs.KeyDerivationFunc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
Show all versions of org.apache.servicemix.bundles.bcprov-jdk16
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
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);
}
}