public class RSAPrivateKey
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
java.math.BigInteger |
dp
dp = e^-1 mod p-1
|
java.math.BigInteger |
dq
dq = e^-1 mod q-1
|
java.math.BigInteger |
invpq
invpq = p^-1 mod q
|
java.math.BigInteger |
n
Der Modulus n
|
java.math.BigInteger |
p
Die Primzahl p
|
java.math.BigInteger |
q
Die Primzahl q
|
Constructor and Description |
---|
RSAPrivateKey() |
public java.math.BigInteger n
public java.math.BigInteger p
public java.math.BigInteger q
public java.math.BigInteger invpq
public java.math.BigInteger dp
public java.math.BigInteger dq