crypto/weakcrypto/inc/cbcmode.h
changeset 8 35751d3474b7
parent 0 2c201484c85f
equal deleted inserted replaced
2:675a964f4eb5 8:35751d3474b7
    17 * CBC mode encryptor and decryptor implementation
    17 * CBC mode encryptor and decryptor implementation
    18 *
    18 *
    19 */
    19 */
    20 
    20 
    21 
    21 
    22 
       
    23 
       
    24 /**
    22 /**
    25  @file 
    23  @file 
    26  @internalAll
    24  @publishedPartner
       
    25  @released 
    27 */
    26 */
    28  
    27  
    29 #ifndef __CBCMODE_H__
    28 #ifndef __CBCMODE_H__
    30 #define __CBCMODE_H__
    29 #define __CBCMODE_H__
    31 
    30 
    33 
    32 
    34 /**
    33 /**
    35 * Concrete subclass of CBlockChainingMode implementing CBC mode block chaining
    34 * Concrete subclass of CBlockChainingMode implementing CBC mode block chaining
    36 * for encryption.
    35 * for encryption.
    37 *
    36 *
    38 * @publishedPartner
       
    39 * @released 
       
    40 */
    37 */
    41 class CModeCBCEncryptor : public CBlockChainingMode
    38 class CModeCBCEncryptor : public CBlockChainingMode
    42 {
    39 {
    43 public:
    40 public:
    44 	/**
    41 	/**
    76 
    73 
    77 /**
    74 /**
    78 * Concrete subclass of CBlockChainingMode implementing CBC mode block chaining
    75 * Concrete subclass of CBlockChainingMode implementing CBC mode block chaining
    79 * for decryption.
    76 * for decryption.
    80 *
    77 *
    81 * @publishedPartner
       
    82 * @released 
       
    83 */
    78 */
    84 class CModeCBCDecryptor : public CBlockChainingMode
    79 class CModeCBCDecryptor : public CBlockChainingMode
    85 {
    80 {
    86 public:
    81 public:
    87 	/**
    82 	/**