org.bouncycastle.crypto.util.PBKDFConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.crypto.util;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
/**
* Base class for PBKDF configs.
*/
public abstract class PBKDFConfig
{
private final ASN1ObjectIdentifier algorithm;
protected PBKDFConfig(ASN1ObjectIdentifier algorithm)
{
this.algorithm = algorithm;
}
public ASN1ObjectIdentifier getAlgorithm()
{
return algorithm;
}
}