- IllegalBlockSizeException - Exception in javax.crypto
 
- 
This exception is thrown when the length of data provided to a block
 cipher is incorrect, i.e., does not match the block size of the cipher.
 
- IllegalBlockSizeException() - Constructor for exception javax.crypto.IllegalBlockSizeException
 
- 
Constructs an IllegalBlockSizeException with no detail message.
 
- IllegalBlockSizeException(String) - Constructor for exception javax.crypto.IllegalBlockSizeException
 
- 
Constructs an IllegalBlockSizeException with the specified
 detail message.
 
- init(int, Key) - Method in class javax.crypto.Cipher
 
- 
Initializes this cipher with a key.
 
- init(int, Key, SecureRandom) - Method in class javax.crypto.Cipher
 
- 
Initializes this cipher with a key and a source of randomness.
 
- init(int, Key, AlgorithmParameterSpec) - Method in class javax.crypto.Cipher
 
- 
Initializes this cipher with a key and a set of algorithm
 parameters.
 
- init(int, Key, AlgorithmParameterSpec, SecureRandom) - Method in class javax.crypto.Cipher
 
- 
Initializes this cipher with a key, a set of algorithm
 parameters, and a source of randomness.
 
- init(int, Certificate) - Method in class javax.crypto.Cipher
 
- 
Initializes this cipher with the public key from the given certificate.
 
- init(int, Certificate, SecureRandom) - Method in class javax.crypto.Cipher
 
- 
Initializes this cipher with the public key from the given certificate
 and
 a source of randomness.
 
- init(Key) - Method in class javax.crypto.Mac
 
- 
Initializes this Mac object with the given key.
 
- init(Key, AlgorithmParameterSpec) - Method in class javax.crypto.Mac
 
- 
Initializes this Mac object with the given key and
 algorithm parameters.
 
- initSign(PrivateKey) - Method in class java.security.Signature
 
- 
Initialize this object for signing.
 
- initSign(PrivateKey, SecureRandom) - Method in class java.security.Signature
 
- 
Initialize this object for signing.
 
- initVerify(PublicKey) - Method in class java.security.Signature
 
- 
Initializes this object for verification.
 
- initVerify(Certificate) - Method in class java.security.Signature
 
- 
Initializes this object for verification, using the public key from
 the given certificate.
 
- InvalidAlgorithmParameterException - Exception in java.security
 
- 
This is the exception for invalid or inappropriate algorithm parameters.
 
- InvalidAlgorithmParameterException() - Constructor for exception java.security.InvalidAlgorithmParameterException
 
- 
Constructs an InvalidAlgorithmParameterException with no detail
 message.
 
- InvalidAlgorithmParameterException(String) - Constructor for exception java.security.InvalidAlgorithmParameterException
 
- 
Constructs an InvalidAlgorithmParameterException with the specified
 detail message.
 
- InvalidAlgorithmParameterException(String, Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
 
- 
Creates a InvalidAlgorithmParameterException with the
 specified detail message and cause.
 
- InvalidAlgorithmParameterException(Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
 
- 
Creates a InvalidAlgorithmParameterException with the
 specified cause and a detail message of
 (cause==null ? null : cause.toString())
 (which typically contains the class and detail message of
 cause).
 
- InvalidKeyException - Exception in java.security
 
- 
This is the exception for invalid Keys (invalid encoding, wrong
 length, uninitialized, etc).
 
- InvalidKeyException() - Constructor for exception java.security.InvalidKeyException
 
- 
Constructs an InvalidKeyException with no detail message.
 
- InvalidKeyException(String) - Constructor for exception java.security.InvalidKeyException
 
- 
Constructs an InvalidKeyException with the specified detail
 message.
 
- InvalidKeyException(String, Throwable) - Constructor for exception java.security.InvalidKeyException
 
- 
Creates a InvalidKeyException with the specified
 detail message and cause.
 
- InvalidKeyException(Throwable) - Constructor for exception java.security.InvalidKeyException
 
- 
Creates a InvalidKeyException with the specified cause
 and a detail message of (cause==null ? null : cause.toString())
 (which typically contains the class and detail message of
 cause).
 
- InvalidParameterSpecException - Exception in java.security.spec
 
- 
This is the exception for invalid parameter specifications.
 
- InvalidParameterSpecException() - Constructor for exception java.security.spec.InvalidParameterSpecException
 
- 
Constructs an InvalidParameterSpecException with no detail message.
 
- InvalidParameterSpecException(String) - Constructor for exception java.security.spec.InvalidParameterSpecException
 
- 
Constructs an InvalidParameterSpecException with the specified detail
 message.
 
- isCertificateEntry(String) - Method in class java.security.KeyStore
 
- 
Returns true if the entry identified by the given alias
 was created by a call to setCertificateEntry,
 or created by a call to setEntry with a
 TrustedCertificateEntry.
 
- isEqual(byte[], byte[]) - Static method in class java.security.MessageDigest
 
- 
Compares two digests for equality.
 
- isKeyEntry(String) - Method in class java.security.KeyStore
 
- 
Returns true if the entry identified by the given alias
 was created by a call to setKeyEntry,
 or created by a call to setEntry with a
 PrivateKeyEntry or a SecretKeyEntry.
 
- IvParameterSpec - Class in javax.crypto.spec
 
- 
This class specifies an initialization vector (IV).
 
- IvParameterSpec(byte[]) - Constructor for class javax.crypto.spec.IvParameterSpec
 
- 
Creates an IvParameterSpec object using the bytes in iv
 as the IV.
 
- IvParameterSpec(byte[], int, int) - Constructor for class javax.crypto.spec.IvParameterSpec
 
- 
Creates an IvParameterSpec object using the first len
 bytes in iv, beginning at offset
 inclusive, as the IV.