Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS
A B C D E F G I K M N P R S T U W

A

available(). Method in class javax.crypto.CipherInputStream
Returns the number of bytes that can be read from this input stream without blocking.

B

BadPaddingException exception javax.crypto.BadPaddingException.
This exception is thrown when a particular padding mechanism is expected for the input data but the data is not padded properly
BadPaddingException(). Constructor for class javax.crypto.BadPaddingException
Constructs a BadPaddingException with no detail message.
BadPaddingException(String). Constructor for class javax.crypto.BadPaddingException
Constructs a BadPaddingException with the specified detail message.

C

Cipher class javax.crypto.Cipher.
This class provides the functionality of a cryptographic cipher for encryption and decryption.
Cipher(CipherSpi, Provider, String). Constructor for class javax.crypto.Cipher
Creates a Cipher object.
CipherInputStream class javax.crypto.CipherInputStream.
A CipherInputStream is composed of an InputStream and a Cipher so that read() methods return data that are read in from the underlying InputStream but have been additionally processed by the Cipher.
CipherInputStream(InputStream, Cipher). Constructor for class javax.crypto.CipherInputStream
Constructs a CipherInputStream from an InputStream and a Cipher.
CipherInputStream(InputStream). Constructor for class javax.crypto.CipherInputStream
Constructs a CipherInputStream from an InputStream without specifying a Cipher.
CipherOutputStream class javax.crypto.CipherOutputStream.
A CipherOutputStream is composed of an OutputStream and a Cipher so that write() methods first process the data before writing them out to the underlying OutputStream.
CipherOutputStream(OutputStream, Cipher). Constructor for class javax.crypto.CipherOutputStream
Constructs a CipherOutputStream from an OutputStream and a Cipher.
CipherOutputStream(OutputStream). Constructor for class javax.crypto.CipherOutputStream
Constructs a CipherOutputStream from an OutputStream without specifying a Cipher.
CipherSpi class javax.crypto.CipherSpi.
This class defines the Service Provider Interface (SPI) for the Cipher class.
CipherSpi(). Constructor for class javax.crypto.CipherSpi
clone(). Method in class javax.crypto.MacSpi
Returns a clone if the implementation is cloneable.
clone(). Method in class javax.crypto.Mac
Returns a clone if the provider implementation is cloneable.
close(). Method in class javax.crypto.CipherOutputStream
Closes this output stream and releases any system resources associated with this stream.
close(). Method in class javax.crypto.CipherInputStream
Closes this input stream and releases any system resources associated with the stream.

D

DECRYPT_MODE. Static variable in class javax.crypto.Cipher
DESKeySpec class javax.crypto.spec.DESKeySpec.
This class specifies a DES key.
DESKeySpec(byte[]). Constructor for class javax.crypto.spec.DESKeySpec
Uses the first 8 bytes in key as the key material for the DES key.
DESKeySpec(byte[], int). Constructor for class javax.crypto.spec.DESKeySpec
Uses the first 8 bytes in key, beginning at offset, as the key material for the DES key.
DESedeKeySpec class javax.crypto.spec.DESedeKeySpec.
This class specifies a DES-EDE ("triple-DES") key.
DESedeKeySpec(byte[]). Constructor for class javax.crypto.spec.DESedeKeySpec
Uses the first 24 bytes in key as the DES-EDE key
DESedeKeySpec(byte[], int). Constructor for class javax.crypto.spec.DESedeKeySpec
Uses the first 24 bytes in key, beginning at offset, as the DES-EDE key
DHGenParameterSpec class javax.crypto.spec.DHGenParameterSpec.
This class specifies the set of parameters used for generating Diffie-Hellman (system) parameters for use in Diffie-Hellman key agreement.
DHGenParameterSpec(int, int). Constructor for class javax.crypto.spec.DHGenParameterSpec
DHKey interface javax.crypto.interfaces.DHKey.
The interface to a Diffie-Hellman key.
DHParameterSpec class javax.crypto.spec.DHParameterSpec.
This class specifies the set of parameters used with the Diffie-Hellman algorithm, as specified in PKCS #3: Diffie-Hellman Key-Agreement Standard.
DHParameterSpec(BigInteger, BigInteger). Constructor for class javax.crypto.spec.DHParameterSpec
Specifies the Diffie-Hellman parameters, using a prime modulus p and a base generator g.
DHParameterSpec(BigInteger, BigInteger, int). Constructor for class javax.crypto.spec.DHParameterSpec
Specifies the Diffie-Hellman parameters, using a prime modulus p, a base generator g, and the size in bits, l, of the random exponent (private value).
DHPrivateKey interface javax.crypto.interfaces.DHPrivateKey.
The interface to a Diffie-Hellman private key.
DHPrivateKeySpec class javax.crypto.spec.DHPrivateKeySpec.
This class specifies a Diffie-Hellman private key with its associated parameters.
DHPrivateKeySpec(BigInteger, BigInteger, BigInteger). Constructor for class javax.crypto.spec.DHPrivateKeySpec
DHPrivateKeySpec(BigInteger, BigInteger, BigInteger, int). Constructor for class javax.crypto.spec.DHPrivateKeySpec
DHPublicKey interface javax.crypto.interfaces.DHPublicKey.
The interface to a Diffie-Hellman public key.
DHPublicKeySpec class javax.crypto.spec.DHPublicKeySpec.
This class specifies a Diffie-Hellman public key with its associated parameters.
DHPublicKeySpec(BigInteger, BigInteger, BigInteger). Constructor for class javax.crypto.spec.DHPublicKeySpec
DHPublicKeySpec(BigInteger, BigInteger, BigInteger, int). Constructor for class javax.crypto.spec.DHPublicKeySpec
doFinal(). Method in class javax.crypto.Cipher
Finishes a multiple-part encryption or decryption operation, depending on how this cipher was initialized.
doFinal(byte[], int). Method in class javax.crypto.Cipher
Finishes a multiple-part encryption or decryption operation, depending on how this cipher was initialized.
doFinal(byte[]). Method in class javax.crypto.Cipher
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
doFinal(byte[], int, int). Method in class javax.crypto.Cipher
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
doFinal(byte[], int, int, byte[]). Method in class javax.crypto.Cipher
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
doFinal(byte[], int, int, byte[], int). Method in class javax.crypto.Cipher
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
doFinal(). Method in class javax.crypto.Mac
Completes this MAC computation and resets this Mac object for further MAC computations with the same secret key.
doFinal(byte[], int). Method in class javax.crypto.Mac
Completes this MAC computation and resets this Mac object for further MAC computations with the same secret key.
doFinal(byte[]). Method in class javax.crypto.Mac
Processes the given array of bytes to complete this MAC computation and resets this Mac object for further MAC computations with the same secret key.
doPhase(Key, boolean). Method in class javax.crypto.KeyAgreement
Executes the next phase of this key agreement with the given key that was received from one of the other parties involved in this key agreement.

E

ENCRYPT_MODE. Static variable in class javax.crypto.Cipher
engineDoFinal(). Method in class javax.crypto.MacSpi
Completes the MAC computation and resets the MAC for further use, maintaining the secret key that the MAC was initialized with.
engineDoFinal(byte[], int, int). Method in class javax.crypto.CipherSpi
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
engineDoFinal(byte[], int, int, byte[], int). Method in class javax.crypto.CipherSpi
Encrypts or decrypts data in a single-part operation, or finishes a multiple-part operation.
engineDoPhase(Key, boolean). Method in class javax.crypto.KeyAgreementSpi
Executes the next phase of this key agreement with the given key that was received from one of the other parties involved in this key agreement.
engineGenerateKey(). Method in class javax.crypto.KeyGeneratorSpi
Generates a secret key.
engineGenerateSecret(KeySpec). Method in class javax.crypto.SecretKeyFactorySpi
Generates a SecretKey object from the provided key specification (key material).
engineGenerateSecret(). Method in class javax.crypto.KeyAgreementSpi
Generates the shared secret and returns it in a new buffer.
engineGenerateSecret(byte[], int). Method in class javax.crypto.KeyAgreementSpi
Generates the shared secret, and places it into the buffer sharedSecret, beginning at offset.
engineGenerateSecret(String). Method in class javax.crypto.KeyAgreementSpi
Creates the shared secret and returns it as a secret key object of the requested algorithm type.
engineGetBlockSize(). Method in class javax.crypto.CipherSpi
Returns the block size (in bytes).
engineGetIV(). Method in class javax.crypto.CipherSpi
Returns the initialization vector (IV) in a new buffer.
engineGetKeySpec(SecretKey, Class). Method in class javax.crypto.SecretKeyFactorySpi
Returns a specification (key material) of the given key object in the requested format.
engineGetMacLength(). Method in class javax.crypto.MacSpi
Returns the length of the MAC in bytes.
engineGetOutputSize(int). Method in class javax.crypto.CipherSpi
Returns the length in bytes that an output buffer would need to be in order to hold the result of the next update or doFinal operation, given the input length inputLen (in bytes).
engineInit(Key, AlgorithmParameterSpec). Method in class javax.crypto.MacSpi
Initializes the MAC with the given (secret) key and algorithm parameters.
engineInit(Key, SecureRandom). Method in class javax.crypto.KeyAgreementSpi
Initializes this key agreement with the given key and source of randomness.
engineInit(Key, AlgorithmParameterSpec, SecureRandom). Method in class javax.crypto.KeyAgreementSpi
Initializes this key agreement with the given key, set of algorithm parameters, and source of randomness.
engineInit(SecureRandom). Method in class javax.crypto.KeyGeneratorSpi
Initializes the key generator.
engineInit(AlgorithmParameterSpec, SecureRandom). Method in class javax.crypto.KeyGeneratorSpi
Initializes the key generator with the specified parameter set and a user-provided source of randomness.
engineInit(int, SecureRandom). Method in class javax.crypto.KeyGeneratorSpi
Initializes this key generator for a certain strength, using the given source of randomness.
engineInit(int, Key, SecureRandom). Method in class javax.crypto.CipherSpi
Initializes this cipher with a key and a source of randomness.
engineInit(int, Key, AlgorithmParameterSpec, SecureRandom). Method in class javax.crypto.CipherSpi
Initializes this cipher with a key, a set of algorithm parameters, and a source of randomness.
engineReset(). Method in class javax.crypto.MacSpi
Resets the MAC for further use, maintaining the secret key that the MAC was initialized with.
engineSetMode(String). Method in class javax.crypto.CipherSpi
Sets the mode of this cipher.
engineSetPadding(String). Method in class javax.crypto.CipherSpi
Sets the padding mechanism of this cipher.
engineTranslateKey(SecretKey). Method in class javax.crypto.SecretKeyFactorySpi
Translates a key object, whose provider may be unknown or potentially untrusted, into a corresponding key object of this key factory.
engineUpdate(byte). Method in class javax.crypto.MacSpi
Processes the given byte.
engineUpdate(byte[], int, int). Method in class javax.crypto.MacSpi
Processes the first len bytes in input, starting at offset.
engineUpdate(byte[], int, int). Method in class javax.crypto.CipherSpi
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
engineUpdate(byte[], int, int, byte[], int). Method in class javax.crypto.CipherSpi
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.

F

flush(). Method in class javax.crypto.CipherOutputStream
Flushes this output stream by forcing any buffered output bytes that have already been processed by the encapsulated Cipher object to be written out.

G

generateKey(). Method in class javax.crypto.KeyGenerator
Generates a secret key.
generateSecret(KeySpec). Method in class javax.crypto.SecretKeyFactory
Generates a SecretKey object from the provided key specification (key material).
generateSecret(). Method in class javax.crypto.KeyAgreement
Generates the shared secret and returns it in a new buffer.
generateSecret(byte[], int). Method in class javax.crypto.KeyAgreement
Generates the shared secret, and places it into the buffer sharedSecret, beginning at offset.
generateSecret(String). Method in class javax.crypto.KeyAgreement
Creates the shared secret and returns it as a secret key object of the requested algorithm type.
getAlgorithm(). Method in class javax.crypto.SecretKeyFactory
Returns the name of the algorithm associated with this key factory.
getAlgorithm(). Method in class javax.crypto.Mac
Returns the standard name of the MAC algorithm.
getAlgorithm(). Method in class javax.crypto.KeyGenerator
Returns the standard name of the key algorithm.
getAlgorithm(). Method in class javax.crypto.KeyAgreement
Returns the standard name of the key agreement algorithm.
getAlgorithm(). Method in class javax.crypto.spec.SecretKeySpec
Returns the name of the algorithm associated with this secret key.
getBlockSize(). Method in class javax.crypto.Cipher
Returns the block size (in bytes).
getCrtCoefficient(). Method in class javax.crypto.spec.RSAPrivateKeyCrtSpec
Returns the crtCoefficient.
getCrtCoefficient(). Method in interface javax.crypto.interfaces.RSAPrivateKeyCrt
Returns the crtCoefficient.
getEncoded(). Method in class javax.crypto.spec.SecretKeySpec
Returns the key material of this secret key.
getExponentSize(). Method in class javax.crypto.spec.DHGenParameterSpec
Returns the size in bits of the random exponent (private value).
getFormat(). Method in class javax.crypto.spec.SecretKeySpec
Returns the name of the encoding format for this secret key.
getG(). Method in class javax.crypto.spec.DHParameterSpec
Returns the base generator g.
getG(). Method in class javax.crypto.spec.DHPublicKeySpec
Returns the base generator g.
getG(). Method in class javax.crypto.spec.DHPrivateKeySpec
Returns the base generator g.
getIV(). Method in class javax.crypto.Cipher
Returns the initialization vector (IV) in a new buffer.
getIV(). Method in class javax.crypto.spec.IvParameterSpec
Returns the initialization vector (IV).
getInstance(String). Static method in class javax.crypto.SecretKeyFactory
Generates a SecretKeyFactory object for the specified secret key algorithm.
getInstance(String, String). Static method in class javax.crypto.SecretKeyFactory
Generates a SecretKeyFactory object for the specified secret key algorithm from the specified provider.
getInstance(String). Static method in class javax.crypto.Cipher
Generates a Cipher object that implements the specified transformation.
getInstance(String, String). Static method in class javax.crypto.Cipher
Creates a Cipher object that implements the specified transformation, as supplied by the specified provider.
getInstance(String). Static method in class javax.crypto.Mac
Generates an Mac object that implements the specified MAC algorithm.
getInstance(String, String). Static method in class javax.crypto.Mac
Generates an Mac object for the specified MAC algorithm from the specified provider.
getInstance(String). Static method in class javax.crypto.KeyGenerator
Generates a KeyGenerator object for the specified algorithm.
getInstance(String, String). Static method in class javax.crypto.KeyGenerator
Generates a KeyGenerator object for the specified key algorithm from the specified provider.
getInstance(String). Static method in class javax.crypto.KeyAgreement
Generates a KeyAgreement object that implements the specified key agreement algorithm.
getInstance(String, String). Static method in class javax.crypto.KeyAgreement
Generates a KeyAgreement object for the specified key agreement algorithm from the specified provider.
getIterationCount(). Method in class javax.crypto.spec.PBEParameterSpec
Returns the iteration count.
getKey(). Method in class javax.crypto.spec.DESKeySpec
Returns the DES key material.
getKey(). Method in class javax.crypto.spec.DESedeKeySpec
Returns the DES-EDE key.
getKeySpec(SecretKey, Class). Method in class javax.crypto.SecretKeyFactory
Returns a specification (key material) of the given key object in the requested format.
getL(). Method in class javax.crypto.spec.DHParameterSpec
Returns the size in bits, l, of the random exponent (private value).
getL(). Method in class javax.crypto.spec.DHPublicKeySpec
Returns the private-value length l.
getL(). Method in class javax.crypto.spec.DHPrivateKeySpec
Returns the private-value length l.
getMacLength(). Method in class javax.crypto.Mac
Returns the length of the MAC in bytes.
getModulus(). Method in class javax.crypto.spec.RSAPrivateKeySpec
Returns the modulus.
getModulus(). Method in class javax.crypto.spec.RSAPublicKeySpec
Returns the modulus.
getModulus(). Method in interface javax.crypto.interfaces.RSAPrivateKey
Returns the modulus.
getModulus(). Method in interface javax.crypto.interfaces.RSAPublicKey
Returns the modulus.
getObject(Cipher). Method in class javax.crypto.SealedObject
Retrieves the original (encapsulated) object.
getOutputSize(int). Method in class javax.crypto.Cipher
Returns the length in bytes that an output buffer would need to be in order to hold the result of the next update or doFinal operation, given the input length inputLen (in bytes).
getP(). Method in class javax.crypto.spec.DHParameterSpec
Returns the prime modulus p.
getP(). Method in class javax.crypto.spec.DHPublicKeySpec
Returns the prime modulus p.
getP(). Method in class javax.crypto.spec.DHPrivateKeySpec
Returns the prime modulus p.
getParams(). Method in interface javax.crypto.interfaces.DHKey
Returns the key parameters.
getPassword(). Method in class javax.crypto.spec.PBEKeySpec
Retrieves the password.
getPrimeExponentP(). Method in class javax.crypto.spec.RSAPrivateKeyCrtSpec
Returns the primeExponentP.
getPrimeExponentP(). Method in interface javax.crypto.interfaces.RSAPrivateKeyCrt
Returns the primeExponentP.
getPrimeExponentQ(). Method in class javax.crypto.spec.RSAPrivateKeyCrtSpec
Returns the primeExponentQ.
getPrimeExponentQ(). Method in interface javax.crypto.interfaces.RSAPrivateKeyCrt
Returns the primeExponentQ.
getPrimeP(). Method in class javax.crypto.spec.RSAPrivateKeyCrtSpec
Returns the primeP.
getPrimeP(). Method in interface javax.crypto.interfaces.RSAPrivateKeyCrt
Returns the primeP.
getPrimeQ(). Method in class javax.crypto.spec.RSAPrivateKeyCrtSpec
Returns the primeQ.
getPrimeQ(). Method in interface javax.crypto.interfaces.RSAPrivateKeyCrt
Returns the primeQ.
getPrimeSize(). Method in class javax.crypto.spec.DHGenParameterSpec
Returns the size in bits of the prime modulus.
getPrivateExponent(). Method in class javax.crypto.spec.RSAPrivateKeySpec
Returns the private exponent.
getPrivateExponent(). Method in interface javax.crypto.interfaces.RSAPrivateKey
Returns the private exponent.
getProvider(). Method in class javax.crypto.SecretKeyFactory
Returns the provider of this SecretKeyFactory object.
getProvider(). Method in class javax.crypto.Cipher
Returns the provider of this Cipher object.
getProvider(). Method in class javax.crypto.Mac
Returns the provider of this Mac object.
getProvider(). Method in class javax.crypto.KeyGenerator
Returns the provider of this KeyGenerator object.
getProvider(). Method in class javax.crypto.KeyAgreement
Returns the provider of this KeyAgreement object.
getPublicExponent(). Method in class javax.crypto.spec.RSAPrivateKeyCrtSpec
Returns the public exponent.
getPublicExponent(). Method in class javax.crypto.spec.RSAPublicKeySpec
Returns the public exponent.
getPublicExponent(). Method in interface javax.crypto.interfaces.RSAPrivateKeyCrt
Returns the public exponent.
getPublicExponent(). Method in interface javax.crypto.interfaces.RSAPublicKey
Returns the public exponent.
getSalt(). Method in class javax.crypto.spec.PBEParameterSpec
Returns the salt.
getX(). Method in class javax.crypto.spec.DHPrivateKeySpec
Returns the private value x.
getX(). Method in interface javax.crypto.interfaces.DHPrivateKey
Returns the private value, x.
getY(). Method in class javax.crypto.spec.DHPublicKeySpec
Returns the public value y.
getY(). Method in interface javax.crypto.interfaces.DHPublicKey
Returns the public value, y.

I

IllegalBlockSizeException exception javax.crypto.IllegalBlockSizeException.
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 class javax.crypto.IllegalBlockSizeException
Constructs an IllegalBlockSizeException with no detail message.
IllegalBlockSizeException(String). Constructor for class javax.crypto.IllegalBlockSizeException
Constructs an IllegalBlockSizeException with the specified detail message.
IvParameterSpec class javax.crypto.spec.IvParameterSpec.
This class specifies an initialization vector (IV).
IvParameterSpec(byte[]). Constructor for class javax.crypto.spec.IvParameterSpec
Uses the bytes in iv as the IV.
IvParameterSpec(byte[], int, int). Constructor for class javax.crypto.spec.IvParameterSpec
Uses the first len bytes in iv, beginning at offset, as the IV.
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(Key). Method in class javax.crypto.Mac
Initializes this Mac object with the given (secret) key.
init(Key, AlgorithmParameterSpec). Method in class javax.crypto.Mac
Initializes this Mac object with the given (secret) key and algorithm parameters.
init(SecureRandom). Method in class javax.crypto.KeyGenerator
Initializes this key generator.
init(AlgorithmParameterSpec). Method in class javax.crypto.KeyGenerator
Initializes this key generator with the specified parameter set, using a system-provided source of randomness.
init(AlgorithmParameterSpec, SecureRandom). Method in class javax.crypto.KeyGenerator
Initializes this key generator with the specified parameter set and a user-provided source of randomness.
init(int). Method in class javax.crypto.KeyGenerator
Initializes this key generator for a certain strength, using a system-provided source of randomness.
init(int, SecureRandom). Method in class javax.crypto.KeyGenerator
Initializes this key generator for a certain strength, using a user-provided source of randomness.
init(Key). Method in class javax.crypto.KeyAgreement
Initializes this key agreement with the given key, which is required to contain all the algorithm parameters required for this key agreement.
init(Key, SecureRandom). Method in class javax.crypto.KeyAgreement
Initializes this key agreement with the given key and source of randomness.
init(Key, AlgorithmParameterSpec). Method in class javax.crypto.KeyAgreement
Initializes this key agreement with the given key and set of algorithm parameters.
init(Key, AlgorithmParameterSpec, SecureRandom). Method in class javax.crypto.KeyAgreement
Initializes this key agreement with the given key, set of algorithm parameters, and source of randomness.
isParityAdjusted(byte[], int). Static method in class javax.crypto.spec.DESKeySpec
Checks if the given DES key material, starting at offset, is parity-adjusted.
isParityAdjusted(byte[], int). Static method in class javax.crypto.spec.DESedeKeySpec
Checks if the given DES-EDE key, starting at offset, is parity-adjusted.
isWeak(byte[], int). Static method in class javax.crypto.spec.DESKeySpec
Checks if the given DES key material is weak or semi-weak.

K

KeyAgreement class javax.crypto.KeyAgreement.
This class provides the functionality of a key agreement (or key exchange) protocol.
KeyAgreement(KeyAgreementSpi, Provider, String). Constructor for class javax.crypto.KeyAgreement
Creates a KeyAgreement object.
KeyAgreementSpi class javax.crypto.KeyAgreementSpi.
This class defines the Service Provider Interface (SPI) for the KeyAgreement class.
KeyAgreementSpi(). Constructor for class javax.crypto.KeyAgreementSpi
KeyGenerator class javax.crypto.KeyGenerator.
This class provides the functionality of a (symmetric) key generator.
KeyGenerator(KeyGeneratorSpi, Provider, String). Constructor for class javax.crypto.KeyGenerator
Creates a KeyGenerator object.
KeyGeneratorSpi class javax.crypto.KeyGeneratorSpi.
This class defines the Service Provider Interface (SPI) for the KeyGenerator class.
KeyGeneratorSpi(). Constructor for class javax.crypto.KeyGeneratorSpi

M

Mac class javax.crypto.Mac.
This class provides the functionality of a "message authentication code" (MAC).
Mac(MacSpi, Provider, String). Constructor for class javax.crypto.Mac
Creates a MAC object.
MacSpi class javax.crypto.MacSpi.
This class defines the Service Provider Interface (SPI) for the Mac class.
MacSpi(). Constructor for class javax.crypto.MacSpi
markSupported(). Method in class javax.crypto.CipherInputStream
Tests if this input stream supports the mark and reset methods, which it does not.

N

NoSuchPaddingException exception javax.crypto.NoSuchPaddingException.
This exception is thrown when a particular padding mechanism is requested but is not available in the environment.
NoSuchPaddingException(). Constructor for class javax.crypto.NoSuchPaddingException
Constructs a NoSuchPaddingException with no detail message.
NoSuchPaddingException(String). Constructor for class javax.crypto.NoSuchPaddingException
Constructs a NoSuchPaddingException with the specified detail message.
NullCipher class javax.crypto.NullCipher.
The NullCipher class is a class that provides an "identity cipher" -- one that does not tranform the plaintext.
NullCipher(). Constructor for class javax.crypto.NullCipher

P

PBEKeySpec class javax.crypto.spec.PBEKeySpec.
A user-chosen password that can be used with password-based encryption.
PBEKeySpec(String). Constructor for class javax.crypto.spec.PBEKeySpec
Constructor that takes a password.
PBEParameterSpec class javax.crypto.spec.PBEParameterSpec.
This class specifies the set of parameters used with password-based encryption (PBE), as defined in the PKCS #5 standard.
PBEParameterSpec(byte[], int). Constructor for class javax.crypto.spec.PBEParameterSpec

R

RSAPrivateKey interface javax.crypto.interfaces.RSAPrivateKey.
The interface to an RSA private key.
RSAPrivateKeyCrt interface javax.crypto.interfaces.RSAPrivateKeyCrt.
The interface to an RSA private key, using the Chinese Remainder Theorem (CRT) representation.
RSAPrivateKeyCrtSpec class javax.crypto.spec.RSAPrivateKeyCrtSpec.
This class specifies an RSA private key using the Chinese Remainder Theorem (CRT) representation.
RSAPrivateKeyCrtSpec(BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger). Constructor for class javax.crypto.spec.RSAPrivateKeyCrtSpec
RSAPrivateKeySpec class javax.crypto.spec.RSAPrivateKeySpec.
This class specifies an RSA private key.
RSAPrivateKeySpec(BigInteger, BigInteger). Constructor for class javax.crypto.spec.RSAPrivateKeySpec
RSAPublicKey interface javax.crypto.interfaces.RSAPublicKey.
The interface to an RSA public key.
RSAPublicKeySpec class javax.crypto.spec.RSAPublicKeySpec.
This class specifies an RSA public key.
RSAPublicKeySpec(BigInteger, BigInteger). Constructor for class javax.crypto.spec.RSAPublicKeySpec
read(). Method in class javax.crypto.CipherInputStream
Reads the next byte of data from this input stream.
read(byte[]). Method in class javax.crypto.CipherInputStream
Reads up to b.length bytes of data from this input stream into an array of bytes.
read(byte[], int, int). Method in class javax.crypto.CipherInputStream
Reads up to len bytes of data from this input stream into an array of bytes.
reset(). Method in class javax.crypto.Mac
Resets this Mac object for further MAC computations with the same secret key.

S

SealedObject class javax.crypto.SealedObject.
This class enables a programmer to create an object and protect its confidentiality with a cryptographic algorithm.
SealedObject(Serializable, Cipher). Constructor for class javax.crypto.SealedObject
Constructs a SealedObject from any Serializable object.
SecretKey interface javax.crypto.SecretKey.
A secret (symmetric) key.
SecretKeyFactory class javax.crypto.SecretKeyFactory.
This class represents a factory for secret keys.
SecretKeyFactory(SecretKeyFactorySpi, Provider, String). Constructor for class javax.crypto.SecretKeyFactory
Creates a SecretKeyFactory object.
SecretKeyFactorySpi class javax.crypto.SecretKeyFactorySpi.
This class defines the Service Provider Interface (SPI) for the SecretKeyFactory class.
SecretKeyFactorySpi(). Constructor for class javax.crypto.SecretKeyFactorySpi
SecretKeySpec class javax.crypto.spec.SecretKeySpec.
This class specifies a secret key in a provider-independent fashion.
SecretKeySpec(byte[], String). Constructor for class javax.crypto.spec.SecretKeySpec
Constructs a secret key from the given byte array.
SecretKeySpec(byte[], int, int, String). Constructor for class javax.crypto.spec.SecretKeySpec
Constructs a secret key from the given byte array, using the first len bytes of key, starting at offset.
ShortBufferException exception javax.crypto.ShortBufferException.
This exception is thrown when an output buffer provided by the user is too short to hold the operation result.
ShortBufferException(). Constructor for class javax.crypto.ShortBufferException
Constructs a ShortBufferException with no detail message.
ShortBufferException(String). Constructor for class javax.crypto.ShortBufferException
Constructs a ShortBufferException with the specified detail message.
skip(long). Method in class javax.crypto.CipherInputStream
Skips over and discards n bytes of data from this input stream.

T

translateKey(SecretKey). Method in class javax.crypto.SecretKeyFactory
Translates a key object, whose provider may be unknown or potentially untrusted, into a corresponding key object of this key factory.

U

update(byte[]). Method in class javax.crypto.Cipher
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
update(byte[], int, int). Method in class javax.crypto.Cipher
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
update(byte[], int, int, byte[]). Method in class javax.crypto.Cipher
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
update(byte[], int, int, byte[], int). Method in class javax.crypto.Cipher
Continues a multiple-part encryption or decryption operation (depending on how this cipher was initialized), processing another data part.
update(byte). Method in class javax.crypto.Mac
Processes the given byte.
update(byte[]). Method in class javax.crypto.Mac
Processes the given array of bytes.
update(byte[], int, int). Method in class javax.crypto.Mac
Processes the first len bytes in input, starting at offset.

W

write(int). Method in class javax.crypto.CipherOutputStream
Writes the specified byte to this output stream.
write(byte[]). Method in class javax.crypto.CipherOutputStream
Writes b.length bytes from the specified byte array to this output stream.
write(byte[], int, int). Method in class javax.crypto.CipherOutputStream
Writes len bytes from the specified byte array starting at offset off to this output stream.

A B C D E F G I K M N P R S T U W
Contents | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT SHOW LISTS | HIDE LISTS