org.spongycastle.tls.crypto.SRP6Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk15on Show documentation
Show all versions of bctls-jdk15on Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
package org.spongycastle.tls.crypto;
import java.math.BigInteger;
/**
* Carrier class for SRP-6 group parameters.
*/
public class SRP6Group
{
private BigInteger N, g;
/**
* Base constructor.
*
* @param N the N value.
* @param g the g value.
*/
public SRP6Group(BigInteger N, BigInteger g)
{
this.N = N;
this.g = g;
}
public BigInteger getG()
{
return g;
}
public BigInteger getN()
{
return N;
}
}