CPBEncryptorSet Class Reference

class CPBEncryptorSet : public CPBEncryptor

Implements the password based encryption of multiple elements.

CPBEncryptSet
Since
v7.0s

Inherits from

Constructor & Destructor Documentation

CPBEncryptorSet()

CPBEncryptorSet()[protected]

~CPBEncryptorSet()

~CPBEncryptorSet()[virtual]

Destructor

Member Functions Documentation

ConstructL(TPBECipher, const TDesC8 &)

voidConstructL(TPBECipheraCipher,
const TDesC8 &aKey
)[protected]

Parameters

TPBECipher aCipher
const TDesC8 & aKey

MaxFinalOutputLength(TUint)

TInt MaxFinalOutputLength(TUintaMaxInputLength)const [virtual]

Gets the maximum size of the output given a certain input length.

Parameters

TUint aMaxInputLengthThe maximum input length in bytes.

MaxOutputLength(TUint)

TInt MaxOutputLength(TUintaMaxInputLength)const [virtual]

Gets the maximum size of the output given a certain input length.

Parameters

TUint aMaxInputLengthThe maximum input length in bytes.

NewL(const TPBECipher, const TDesC8 &)

IMPORT_C CPBEncryptorSet *NewL(const TPBECipheraCipher,
const TDesC8 &aKey
)[static]

Creates a new CPBEncryptorSet object from the specified cipher and key, and a random Initialization Vector (IV).

Parameters

const TPBECipher aCipherThe encryption cipher
const TDesC8 & aKeyThe encryption key

NewLC(const TPBECipher, const TDesC8 &)

IMPORT_C CPBEncryptorSet *NewLC(const TPBECipheraCipher,
const TDesC8 &aKey
)[static]

Creates a new CPBEncryptorSet object from the specified cipher and key, and a random IV.

Puts a pointer to the returned object onto the cleanup stack.

Parameters

const TPBECipher aCipherThe encryption cipher
const TDesC8 & aKeyThe encryption key

Process(const TDesC8 &, TDes8 &)

voidProcess(const TDesC8 &aInput,
TDes8 &aOutput
)[virtual]

Transforms aInput into its encrypted form, aOutput.

aOutput must have CPBEncryptorSet::MaxOutputLength() empty bytes remaining in its length.

Parameters

const TDesC8 & aInputThe plaintext.
TDes8 & aOutputThe ciphertext.

ProcessFinalL(const TDesC8 &, TDes8 &)

voidProcessFinalL(const TDesC8 &aInput,
TDes8 &aOutput
)[virtual]

Transforms aInput into its encrypted form, aOutput, and applies a padding scheme to ensure a block aligned result.

aOutput must have CPBEncryptorSet::MaxFinalOutputLength() empty bytes remaining in its length.

Parameters

const TDesC8 & aInputThe plaintext.
TDes8 & aOutputThe ciphertext.

Reset(void)

IMPORT_C voidReset(void)

Resets the CPBEncryptorSet object back to its original state and clears all its buffers.

Parameters

void

Member Data Documentation

CSymmetricCipher * iCipher

CSymmetricCipher *iCipher[private]

HBufC8 * iIV

HBufC8 *iIV[private]

TBool iIVSent

TBool iIVSent[private]