- java.lang.Object
-
- swim.security.RsaPrimeDef
-
public class RsaPrimeDef extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected BigInteger
coefficient
protected BigInteger
exponent
protected BigInteger
factor
-
Constructor Summary
Constructors Constructor Description RsaPrimeDef(BigInteger factor, BigInteger exponent)
RsaPrimeDef(BigInteger factor, BigInteger exponent, BigInteger coefficient)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BigInteger
coefficient()
boolean
equals(Object other)
BigInteger
exponent()
BigInteger
factor()
static Form<RsaPrimeDef>
form()
static RsaPrimeDef
from(RSAOtherPrimeInfo info)
int
hashCode()
RSAOtherPrimeInfo
toRSAOtherPrimeInfo()
Value
toValue()
-
-
-
Field Detail
-
factor
protected final BigInteger factor
-
exponent
protected final BigInteger exponent
-
coefficient
protected final BigInteger coefficient
-
-
Constructor Detail
-
RsaPrimeDef
public RsaPrimeDef(BigInteger factor, BigInteger exponent, BigInteger coefficient)
-
RsaPrimeDef
public RsaPrimeDef(BigInteger factor, BigInteger exponent)
-
-
Method Detail
-
factor
public final BigInteger factor()
-
exponent
public final BigInteger exponent()
-
coefficient
public final BigInteger coefficient()
-
toRSAOtherPrimeInfo
public final RSAOtherPrimeInfo toRSAOtherPrimeInfo()
-
toValue
public Value toValue()
-
from
public static RsaPrimeDef from(RSAOtherPrimeInfo info)
-
form
@Kind public static Form<RsaPrimeDef> form()
-
-