org.bouncycastle.crypto.constraints.DefaultServiceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk14 Show documentation
Show all versions of bcprov-jdk14 Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.4.
package org.bouncycastle.crypto.constraints;
import org.bouncycastle.crypto.CryptoServiceProperties;
import org.bouncycastle.crypto.CryptoServicePurpose;
public class DefaultServiceProperties
implements CryptoServiceProperties
{
private final String algorithm;
private final int bitsOfSecurity;
private final Object params;
private final CryptoServicePurpose purpose;
public DefaultServiceProperties(String algorithm, int bitsOfSecurity)
{
this(algorithm, bitsOfSecurity, null, CryptoServicePurpose.ANY);
}
public DefaultServiceProperties(String algorithm, int bitsOfSecurity, Object params)
{
this(algorithm, bitsOfSecurity, params, CryptoServicePurpose.ANY);
}
public DefaultServiceProperties(String algorithm, int bitsOfSecurity, Object params, CryptoServicePurpose purpose)
{
this.algorithm = algorithm;
this.bitsOfSecurity = bitsOfSecurity;
this.params = params;
if (params instanceof CryptoServicePurpose)
{
throw new IllegalArgumentException("params should not be CryptoServicePurpose");
}
this.purpose = purpose;
}
public int bitsOfSecurity()
{
return bitsOfSecurity;
}
public String getServiceName()
{
return algorithm;
}
public CryptoServicePurpose getPurpose()
{
return purpose;
}
public Object getParams()
{
return params;
}
}