| Package | Description |
|---|---|
| java.security |
Provides the classes and interfaces for the security framework.
|
| java.security.interfaces |
Provides interfaces for generating RSA (Rivest, Shamir and Adleman AsymmetricCipher algorithm) keys as defined in the RSA Laboratory Technical Note PKCS#1, and DSA (Digital Signature Algorithm) keys as defined in NIST's FIPS-186.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract Object |
SignatureSpi.engineGetParameter(String
Deprecated.
|
protected abstract void |
SignatureSpi.engineSetParameter(String
Deprecated.
Replaced by
engineSetParameter.
|
Object |
Signature.getParameter(String
Deprecated.
|
void |
Signer.setKeyPair(KeyPair
Deprecated.
Sets the key pair (public key and private key) for this signer.
|
void |
Signature.setParameter(String
Deprecated.
Use
setParameter.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DSAKeyPairGenerator.initialize(DSAParams
Initializes the key pair generator using the DSA family parameters (p,q and g) and an optional SecureRandom bit source.
|
void |
DSAKeyPairGenerator.initialize(int modlen, boolean genParams, SecureRandom
Initializes the key pair generator for a given modulus length (instead of parameters), and an optional SecureRandom bit source.
|