AES192CBCdecrypt and AES192CBCencrypt (String functions)

From m204wiki
Jump to navigation Jump to search

AES192CBC encryption or decryption (String class)

[Introduced in Model 204 7.6]


AES192CBCdecrypt and AES192CBCencrypt are synonyms for the String class function that applies the DEA (Data Encryption Algorithm) using a 192-bit symmetric key to decrypt or encrypt each 128-bit block of input text. CBC (Cipher Block Chaining) refers to a randomizing tactic whereby the result of applying the AES cipher to a 128-bit block is combined with the next block before the next block's encryption; and so on for each subsequent block. An initialization vector is used in the first block to make its encryption unique.

For more details about how the algorithm works, see Data Encryption Standard and Block Chaining (CBC) Cipher Block Chaining (CBC).

The length of the returned string is the same as that of the object string.

AES is a two-way cipher, so encrypting a string with a key and then decrypting the result of that encryption with the same key produces the original string. That is, the following assertion should always hold:

assert %string:aes192cbcencrypt(%key):aes192cbcdecrypt(%key) eq %string

You can use AES192CBCdecrypt to "document" that you are decrypting, and use AES192CBCencrypt to "document" that you are encrypting. You can use AES192CBCdecrypt and AES192CBCencrypt interchangeably on the rest of this page.

Syntax

%outString = string:AES192CBCdecrypt( key, initVector) Throws UnsupportedCrypto, InvalidCryptoKey, InvalidCryptoData, InvalidCryptoInitVector

%outString = string:AES192CBCencrypt( key, initVector) Throws UnsupportedCrypto, InvalidCryptoKey, InvalidCryptoData, InvalidCryptoInitVector

Syntax terms

%outString A string variable to receive the encrypted or decrypted method object string. Its length is the same as string.
string The string to which the method is applied. string must be a multiple of sixteen bytes in length; its maximum is 32768 bytes. It may be null.
key A 24-byte (only) string variable whose value is used to encrypt or decrypt the method object, string.
initVector A 16-byte string that is used to randomize the encryption. The initialization vector is used to ensure distinct ciphertexts are produced even when the same plaintext is encrypted multiple times independently with the same key.

Usage notes

  • You are not prevented from creating confusion by encrypting with AES192CBCdecrypt and decrypting with AES192CBCencrypt.
  • The AES192CBCdecrypt and AES192CBCencrypt functions are available as of Model 204 7.6.

Examples

In the following example, the output string from the AES192CBCencrypt method is converted to hex using the StringToHex function to reveal its non-displayable characters, then decrypted to return the original input string:

b %ls is longstring %string is longstring %key is string len 24 %iv is string len 16 %string = 'onetwothreefour0onetwothreefour0' %key = '123456781616161624242424' %iv = 'abcdefgh16161616' %ls = %string:aes192cbcencrypt(%key, %iv) printText {~} is {%ls:stringTohex} printText {~} is: {%ls:aes192cbcdecrypt(%key, %iv)} end

The result is:

%ls:stringTohex is: 93CF46382628E14E277DFB16A25109ED425D275B12E5A2C17B2DE60D2617D89D %ls:aes192cbcdecrypt(%key, %iv) is: onetwothreefour0onetwothreefour0

See also