|
|||||||||
Home >> All >> gnu >> java >> security >> key >> [ rsa overview ] | PREV NEXT |
D
- DEBUG - Static variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- DEFAULT_ENCODING_FORMAT - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Default encoding format to use when none was specified.
- DEFAULT_MODULUS_LENGTH - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Default value for the modulus length.
- d - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- The private exponent of an RSA private key.
- dP - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- The first factor's exponent.
- dQ - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- The second factor's exponent.
- decodePrivateKey(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- decodePrivateKey(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairRawCodec
- decodePrivateKey(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- decodePublicKey(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- decodePublicKey(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairRawCodec
- decodePublicKey(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- defaultFormat - Variable in class gnu.java.security.key.rsa.GnuRSAKey
- Identifier of the default encoding format to use when externalizing the key material.
E
- e - Variable in class gnu.java.security.key.rsa.GnuRSAKey
- The public exponent of an RSA key pair.
- e - Variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- This implementation uses, by default, Fermat's F4 number as the public exponent.
- encodePrivateKey(PrivateKey) - Method in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- Returns the PKCS#8 ASN.1 PrivateKeyInfo representation of an RSA private key.
- encodePrivateKey(PrivateKey) - Method in class gnu.java.security.key.rsa.RSAKeyPairRawCodec
- Returns the encoded form of the designated RSA private key according to the Raw format supported by this library.
- encodePrivateKey(PrivateKey) - Method in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- encodePublicKey(PublicKey) - Method in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- encodePublicKey(PublicKey) - Method in class gnu.java.security.key.rsa.RSAKeyPairRawCodec
- Returns the encoded form of the designated RSA public key according to the Raw format supported by this library.
- encodePublicKey(PublicKey) - Method in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- Returns the X.509 ASN.1 SubjectPublicKeyInfo representation of an RSA public key.
- equals(Object) - Method in class gnu.java.security.key.rsa.GnuRSAKey
- Returns
true
if the designated object is an instance of java.security.interfaces.RSAKey and has the same RSA parameter values as this one. - equals(Object) - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- Returns
true
if the designated object is an instance of this class and has the same RSA parameter values as this one. - equals(Object) - Method in class gnu.java.security.key.rsa.GnuRSAPublicKey
- Returns
true
if the designated object is an instance of this class and has the same RSA parameter values as this one.
G
- GnuRSAKey - class gnu.java.security.key.rsa.GnuRSAKey.
- A base asbtract class for both public and private RSA keys.
- GnuRSAKey(int, BigInteger, BigInteger) - Constructor for class gnu.java.security.key.rsa.GnuRSAKey
- Trivial protected constructor.
- GnuRSAPrivateKey - class gnu.java.security.key.rsa.GnuRSAPrivateKey.
- An object that embodies an RSA private key.
- GnuRSAPrivateKey(BigInteger, BigInteger, BigInteger, BigInteger) - Constructor for class gnu.java.security.key.rsa.GnuRSAPrivateKey
- Convenience constructor.
- GnuRSAPrivateKey(int, BigInteger, BigInteger, BigInteger, BigInteger) - Constructor for class gnu.java.security.key.rsa.GnuRSAPrivateKey
- Constructs a new instance of a
GnuRSAPrivateKey
given the designated arguments. - GnuRSAPrivateKey(int, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger) - Constructor for class gnu.java.security.key.rsa.GnuRSAPrivateKey
- Constructs a new instance of a
GnuRSAPrivateKey
given the designated arguments. - GnuRSAPublicKey - class gnu.java.security.key.rsa.GnuRSAPublicKey.
- An object that encapsulates an RSA public key.
- GnuRSAPublicKey(BigInteger, BigInteger) - Constructor for class gnu.java.security.key.rsa.GnuRSAPublicKey
- Conveience constructor.
- GnuRSAPublicKey(int, BigInteger, BigInteger) - Constructor for class gnu.java.security.key.rsa.GnuRSAPublicKey
- Constructs a new instance of
GnuRSAPublicKey
given the designated arguments. - generate() - Method in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- The algorithm used here is described in nessie-pss-B.pdf document which is part of the RSA-PSS submission to NESSIE.
- getAlgorithm() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- getCrtCoefficient() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- getDefaultPRNG() - Method in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- getE() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- Same as
getPublicExponent()
55 . - getEncoded() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- Deprecated. see getEncoded(int).
- getEncoded(int) - Method in class gnu.java.security.key.rsa.GnuRSAKey
- getEncoded(int) - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- Returns the encoded form of this private key according to the designated format.
- getEncoded(int) - Method in class gnu.java.security.key.rsa.GnuRSAPublicKey
- Returns the encoded form of this public key according to the designated format.
- getFormat() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- getFormatID() - Method in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- getFormatID() - Method in class gnu.java.security.key.rsa.RSAKeyPairRawCodec
- getFormatID() - Method in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- getModulus() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- getN() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- Returns the modulus
n
. - getPrimeExponentP() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- getPrimeExponentQ() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- getPrimeP() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- getPrimeQ() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- getPrivateExponent() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- getPublicExponent() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- Returns the public exponent
e
. - gnu.java.security.key.rsa - package gnu.java.security.key.rsa
L
- L - Variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- The desired bit length of the modulus.
- log - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- log - Static variable in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- log - Static variable in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
M
- MODULUS_LENGTH - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Property name of the length (Integer) of the modulus of an RSA key.
N
- n - Variable in class gnu.java.security.key.rsa.GnuRSAKey
- The public modulus of an RSA key pair.
- name() - Method in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- nextRandomBytes(byte[]) - Method in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Fills the designated byte array with random data.
O
- ONE - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- The BigInteger constant 1.
P
- PREFERRED_ENCODING_FORMAT - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Property name of the preferred encoding format to use when externalizing generated instance of key-pairs from this generator.
- p - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- The first prime divisor of the modulus.
- preferredFormat - Variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Preferred encoding format of generated keys.
- prng - Variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Our default source of randomness.
Q
- q - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- The second prime divisor of the modulus.
- qInv - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- The CRT (Chinese Remainder Theorem) coefficient.
R
- RSAKeyPairGenerator - class gnu.java.security.key.rsa.RSAKeyPairGenerator.
- A key-pair generator for asymetric keys to use in conjunction with the RSA scheme.
- RSAKeyPairGenerator() - Constructor for class gnu.java.security.key.rsa.RSAKeyPairGenerator
- RSAKeyPairPKCS8Codec - class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec.
- An implementation of an gnu.java.security.key.IKeyPairCodec that knows how to encode / decode PKCS#8 ASN.1 external representation of RSA private keys.
- RSAKeyPairPKCS8Codec() - Constructor for class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- RSAKeyPairRawCodec - class gnu.java.security.key.rsa.RSAKeyPairRawCodec.
- An object that implements the gnu.java.security.key.IKeyPairCodec interface for the Raw format to use with RSA keypairs.
- RSAKeyPairRawCodec() - Constructor for class gnu.java.security.key.rsa.RSAKeyPairRawCodec
- RSAKeyPairX509Codec - class gnu.java.security.key.rsa.RSAKeyPairX509Codec.
- An implementation of an gnu.java.security.key.IKeyPairCodec that knows how to encode / decode X.509 ASN.1 external representation of RSA public keys.
- RSAKeyPairX509Codec() - Constructor for class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- RSA_ALG_OID - Static variable in class gnu.java.security.key.rsa.RSAKeyPairPKCS8Codec
- RSA_ALG_OID - Static variable in class gnu.java.security.key.rsa.RSAKeyPairX509Codec
- RSA_PARAMETERS - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Property name of an optional java.security.spec.RSAKeyGenParameterSpec instance to
use for this generator's
n
, ande
values. - rnd - Variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- The optional java.security.SecureRandom instance to use.
S
- SOURCE_OF_RANDOMNESS - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Property name of an optional java.security.SecureRandom instance to use.
- setup(Map) - Method in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- Configures this instance.
- str - Variable in class gnu.java.security.key.rsa.GnuRSAKey
- String representation of this key.
- str - Variable in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- String representation of this key.
- str - Variable in class gnu.java.security.key.rsa.GnuRSAPublicKey
- String representation of this key.
T
- TWO - Static variable in class gnu.java.security.key.rsa.RSAKeyPairGenerator
- The BigInteger constant 2.
- toString() - Method in class gnu.java.security.key.rsa.GnuRSAKey
- toString() - Method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- toString() - Method in class gnu.java.security.key.rsa.GnuRSAPublicKey
V
- valueOf(byte[]) - Static method in class gnu.java.security.key.rsa.GnuRSAPrivateKey
- A class method that takes the output of the
encodePrivateKey()
method of an RSA keypair codec object (an instance implementing gnu.java.security.key.IKeyPairCodec for RSA keys, and re-constructs an instance of this object. - valueOf(byte[]) - Static method in class gnu.java.security.key.rsa.GnuRSAPublicKey
- A class method that takes the output of the
encodePublicKey()
method of an RSA keypair codec object (an instance implementing gnu.java.security.key.IKeyPairCodec for RSA keys, and re-constructs an instance of this object.
D E G L M N O P Q R S T V
|
|||||||||
Home >> All >> gnu >> java >> security >> key >> [ rsa overview ] | PREV NEXT |