Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

Encryption.DecryptContainerAES

Decrypts container value with AES engine in CFB mode.

Component Version macOS Windows Linux Server iOS SDK
Encryption 2.9 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes

Deprecated

This function was deprecated. Use Encryption.Cipher instead.

MBS( "Encryption.DecryptContainerAES"; key; value { ; iv } )   More

Parameters

Parameter Description Example Flags
key The key you want to use. "Hello"
value The container value to use. $inputData
iv The initial vector as a text with up to 16 bytes length. "1234567890ABCDEF" Optional

Result

Returns error or decrypted container value.

Description

Decrypts container value with AES engine in CFB mode.
The function expects you to use the same key as encryption and a container value produced by the Encryption.EncryptContainerAES function. The function does not store the key, but once the data is decrypted it can decide if they make sense and return an error about a wrong key if data is looking strange.
Keys shorter than 128 bit, 192 bit or 256 bit length are padded with null bytes to right size. This means that only the first 32 characters are used at most.
The plugin has no idea to verify if the key is correct. You need to make sure that you check if result is correct, e.g. by using a hash to verify if result is the expected value.
Deprecated. Please move to Encryption.Cipher for new projects.

Examples

Encrypt and Decrypt:

set variable $key to "Hello"
set variable $encryptedData to MBS( "Encryption.EncryptContainerAES"; $key; $inputData )
set variable $decryptedData to MBS( "Encryption.DecryptContainerAES"; $key; $encryptedData )

See also

Example Databases

Blog Entries

This function checks for a license.

Created 18th August 2014, last changed 12nd June 2020


Encryption.DecryptBlowfish - Encryption.DecryptContainerBlowfish