Decrypt

nn::crypto::Aes::Decrypt Member Function

Syntax

virtual void Decrypt(
     void * pDst,
     const void * pSrc
) const;

Parameters

Name Description
out pDst Pointer to the buffer that receives decrypted data. This buffer must be at least as big as the size obtained by calling the GetBlockSize function.
in pSrc Pointer to the buffer storing data to decrypt. This buffer must be the size obtained by calling the GetBlockSize function.

Return Values

None.

Description

Decrypts using the AES algorithm.

See the BlockCipher::Decrypt function for details.

Revision History

2011/10/27
Initial version.

CONFIDENTIAL