Package de.mhus.lib.core.crypt
Class AsyncKey
- java.lang.Object
-
- de.mhus.lib.core.crypt.AsyncKey
-
public class AsyncKey extends Object
-
-
Constructor Summary
Constructors Constructor Description AsyncKey()AsyncKey(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient, int maxLoad)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetCoefficient()BigIntegergetExponent1()BigIntegergetExponent2()intgetMaxLoad()BigIntegergetModulus()BigIntegergetPrime1()BigIntegergetPrime2()BigIntegergetPrivateExponent()BigIntegergetPublicExponent()protected voidsetCoefficient(BigInteger coefficient)protected voidsetExponent1(BigInteger exponent1)protected voidsetExponent2(BigInteger exponent2)protected voidsetModulus(BigInteger modulus)protected voidsetPrime1(BigInteger prime1)protected voidsetPrime2(BigInteger prime2)protected voidsetPrivateExponent(BigInteger privateExponent)protected voidsetPublicExponent(BigInteger publicExponent)StringtoString()
-
-
-
Constructor Detail
-
AsyncKey
public AsyncKey()
-
AsyncKey
public AsyncKey(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient, int maxLoad)
-
-
Method Detail
-
getModulus
public BigInteger getModulus()
-
setModulus
protected void setModulus(BigInteger modulus)
-
getPublicExponent
public BigInteger getPublicExponent()
-
setPublicExponent
protected void setPublicExponent(BigInteger publicExponent)
-
getPrivateExponent
public BigInteger getPrivateExponent()
-
setPrivateExponent
protected void setPrivateExponent(BigInteger privateExponent)
-
getPrime1
public BigInteger getPrime1()
-
setPrime1
protected void setPrime1(BigInteger prime1)
-
getPrime2
public BigInteger getPrime2()
-
setPrime2
protected void setPrime2(BigInteger prime2)
-
getExponent1
public BigInteger getExponent1()
-
setExponent1
protected void setExponent1(BigInteger exponent1)
-
getExponent2
public BigInteger getExponent2()
-
setExponent2
protected void setExponent2(BigInteger exponent2)
-
getCoefficient
public BigInteger getCoefficient()
-
setCoefficient
protected void setCoefficient(BigInteger coefficient)
-
getMaxLoad
public int getMaxLoad()
-
-