Package de.flexiprovider.common.mode

This package contains the classes that implement standard modes of operation for symmetric block ciphers.

See:
          Description

Class Summary
CBC Cipher Block Chaining (CBC) mode for symmetric block ciphers.
CFB Cipher feedback mode for symmetric block ciphers.
CFBParameterSpec This class is the parameter specification of the Cipher Feedback Mode
CTR Counter (CTR) mode for symmetric block ciphers.
ECB This class implements the Electronic Codebook Mode (ECB) for symmetric block ciphers.
ModeParameterGenerator This class is used to generate initialization vectors (IVs) used by the modes CBC, CFB, OFB, and CTR.
ModeParameters This class is used as an opaque representation of initialization vectors used as mode parameters.
ModeParameterSpec This interface groups (and provides type safety for) all mode parameter specifications.
ModeParamGenParameterSpec This class specifies parameters used for initializing the ModeParameterGenerator.
OFB Output feedback mode for symmetric block ciphers as per ISO/IEC 10116 (full feedback)
OFBParameterSpec This class is the parameter specification of the Cipher Feedback Mode
 

Package de.flexiprovider.common.mode Description

This package contains the classes that implement standard modes of operation for symmetric block ciphers.

The following modes have been implemented for symmetric ciphers:

Methods of the mode classes should never be called directly but are rather invoked by BasicCipher objects.