Serialized Form
Package gnu.crypto.assembly |
_exception
java.lang.Throwable _exception
Package gnu.crypto.cipher |
Package gnu.crypto.jce.prng |
adaptee
IRandom adaptee
- Our underlying prng instance.
virgin
boolean virgin
- Have we been initialized?
adaptee
ICMGenerator adaptee
- Our underlying prng instance.
adaptee
UMacGenerator adaptee
- Our underlying prng instance.
key
byte[] key
algorithm
java.lang.String algorithm
cause
java.lang.Throwable cause
- The possibly
null
root cause exception.
Package gnu.crypto.key.dh |
q
java.math.BigInteger q
- The public prime q. A prime divisor of p-1.
p
java.math.BigInteger p
- The public prime p.
g
java.math.BigInteger g
- The generator g.
x
java.math.BigInteger x
- The private exponent.
y
java.math.BigInteger y
Package gnu.crypto.key.dss |
p
java.math.BigInteger p
- A prime modulus, where
2L-1 < p < 2L
for 512 <= L <= 1024
and L
a multiple of
64
.
q
java.math.BigInteger q
- A prime divisor of
p - 1
, where 2159 < q
< 2160
.
g
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
).
x
java.math.BigInteger x
A randomly or pseudorandomly generated integer with 0 < x <
q
.
y
java.math.BigInteger y
y = gx mod p
where x
is the private
part of the DSA key.
Package gnu.crypto.key.rsa |
n
java.math.BigInteger n
- The public modulus of an RSA key pair.
e
java.math.BigInteger e
- The public exponent of an RSA key pair.
p
java.math.BigInteger p
- The first prime divisor of the modulus.
q
java.math.BigInteger q
- The second prime divisor of the modulus.
d
java.math.BigInteger d
- The private exponent of an RSA private key.
dP
java.math.BigInteger dP
- The first factor's exponent.
dQ
java.math.BigInteger dQ
- The second factor's exponent.
qInv
java.math.BigInteger qInv
- The CRT (Chinese Remainder Theorem) coefficient.
Package gnu.crypto.key.srp6 |
N
java.math.BigInteger N
- The public, Germaine prime, shared modulus.
g
java.math.BigInteger g
- The generator.
X
java.math.BigInteger X
- The private exponent for either the server or the client engaged in the
SRP protocol exchange.
v
java.math.BigInteger v
- The user's verifier (v) --for the server-- also computed at the client
side as g.modPow(x, N), where x is the hashed output of the user name and
password .
Y
java.math.BigInteger Y
- The public exponent for either the server or the client engaged in the
SRP protocol exchange.
Package gnu.crypto.keyring |
encodedParams
byte[] encodedParams
- The encoded parameters.
encryptedContent
byte[] encryptedContent
paramsAlg
java.lang.String paramsAlg
sealAlg
java.lang.String sealAlg
Package javax.crypto.spec |
algorithm
java.lang.String algorithm
key
byte[] key
Package javax.security.auth.callback |
prompt
java.lang.String prompt
-
- Since:
- 1.4
choices
java.lang.String[] choices
- the list of choices.
- Since:
- 1.4
defaultChoice
int defaultChoice
- the choice to be used as the default choice.
- Since:
- 1.4
multipleSelectionsAllowed
boolean multipleSelectionsAllowed
- whether multiple selections are allowed from the list of choices.
- Since:
- 1.4
selections
int[] selections
- the selected choices, represented as indexes into the choices list.
- Since:
- 1.4
prompt
java.lang.String prompt
-
- Since:
- 1.4
messageType
int messageType
-
- Since:
- 1.4
optionType
int optionType
-
- Since:
- 1.4
defaultOption
int defaultOption
-
- Since:
- 1.4
options
java.lang.String[] options
-
- Since:
- 1.4
selection
int selection
-
- Since:
- 1.4
locale
java.util.Locale locale
-
- Since:
- 1.4
prompt
java.lang.String prompt
-
- Since:
- 1.4
defaultName
java.lang.String defaultName
-
- Since:
- 1.4
inputName
java.lang.String inputName
-
- Since:
- 1.4
prompt
java.lang.String prompt
-
- Since:
- 1.4
echoOn
boolean echoOn
-
- Since:
- 1.4
inputPassword
char[] inputPassword
-
- Since:
- 1.4
prompt
java.lang.String prompt
-
- Since:
- 1.4
defaultText
java.lang.String defaultText
-
- Since:
- 1.4
inputText
java.lang.String inputText
-
- Since:
- 1.4
messageType
int messageType
-
- Since:
- 1.4
message
java.lang.String message
-
- Since:
- 1.4
callback
Callback callback
-
Package javax.security.sasl |
_exception
java.lang.Throwable _exception
- The possibly null root cause exception.
Copyright © 2001, 2002, 2003, 2004 Free Software Foundation, Inc.