package org.bouncycastle.crypto.params; import java.math.BigInteger; /* loaded from: classes6.dex */ public class SRP6GroupParameters { private BigInteger N; private BigInteger g; public BigInteger getN() { return this.N; } public BigInteger getG() { return this.g; } public SRP6GroupParameters(BigInteger bigInteger, BigInteger bigInteger2) { this.N = bigInteger; this.g = bigInteger2; } }