e-CryptIt Engine Xojo Plugin

AES_ECB.Decrypt Method

Use this function to decrypt a block of data that comes from MemoryBlock.

Because AES works on blocks of 16 bytes then you get the best performance if the block size that you pass to it is dividable by 16. The class has built in cache technology so it will work if the the block size is not dividable by 16, but it will be slower.

Decrypt(
   data as MemoryBlock) as MemoryBlock

Parameters

data
The data to encrypt.

Returns

MemoryBlock

Remarks

See Also

AES_ECB Class