Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.crypto.spec: Javadoc index of package javax.crypto.spec.


Package Samples:

javax.crypto.spec

Classes:

SecretKeySpec: This is a simple wrapper around a raw byte array, for ciphers that do not require any key parameters other than the bytes themselves. Since this class implements javax.crypto.SecretKey , which in turn extends java.security.Key , so instances of this class may be passed directly to the init() methods of javax.crypto.Cipher .
DHParameterSpec: The base set of parameters necessary to perform Diffie-Hellman key exchange. Each party in the key exchange shares these parameters. Each set of parameters consists of a base generator g , a prime modulus p , and an optional length, in bits, of the private exponent. See PKCS #3 - Diffie-Hellman Key Agreement Standard for more information.
PBEKeySpec: A wrapper for a password-based key, used for password-based encryption (PBE). Examples of password-based encryption algorithms include: PKCS #5 - Password-Based Cryptography Standard PKCS #12 - Personal Information Exchange Syntax Standard
RC2ParameterSpec: A wrapper for parameters for the RC2 block cipher ("RC" means either "Rivest Cipher" or "Ron's Code", depending upon who you ask and when).
PBEParameterSpec: A wrapper for the parameters used in PKCS #5 - Password-Based Cryptography Standard .
IvParameterSpec: A wrapper for an initialization vector. An initialization vector is necessary for any cipher in any feedback mode , e.g. CBC.
RC5ParameterSpec: A wrapper for parameters to the RC5 block cipher.
DESedeKeySpec: This class is a transparent wrapper for DES-EDE (Triple-DES) keys, which are arrays of 24 bytes.
DHGenParameterSpec: This class represents the parameters needed for generating Diffie-Hellman parameters.
DESKeySpec: This class is a transparent wrapper for DES keys, which are arrays of 8 bytes.
DHPrivateKeySpec: A wrapper for Diffie-Hellman private key data.
DHPublicKeySpec: A wrapper for Diffie-Hellman public key data.

Home | Contact Us | Privacy Policy | Terms of Service