java.math.BigInteger p
2L-1 < p < 2L
for 512 <= L <= 1024
and L
a multiple of
64
.java.math.BigInteger q
p - 1
, where 2159 < q
< 2160
.java.math.BigInteger g
g = h(p-1)/q mod p
, where h
is any
integer with 1 < h < p - 1
such that h
(p-1)/q mod p > 1
(g
has order q mod p
).java.math.BigInteger x
A randomly or pseudorandomly generated integer with 0 < x <;
q
.
java.math.BigInteger y
y = gx mod p
where x
is the private
part of the DSA key.ECDomainParameter mParameters
java.math.BigInteger mD
ECGNUPoint mQ
java.math.BigInteger n
java.math.BigInteger e
java.math.BigInteger p
java.math.BigInteger q
java.math.BigInteger d
java.math.BigInteger dP
java.math.BigInteger dQ
java.math.BigInteger qInv
Copyright © 2025. All rights reserved.