DEA192CBCdecrypt and DEA192CBCencrypt (String functions): Difference between revisions
(Created page with "{{Template:String:DEA192CBCdecrypt and DEA192CBCencrypt subtitle}} This page is under construction. ==Syntax== {{Template:String:DEA192CBCdecrypt syntax}} {{Template:Str...") |
m (add many details and example) |
||
Line 1: | Line 1: | ||
{{Template:String:DEA192CBCdecrypt and DEA192CBCencrypt subtitle}} | {{Template:String:DEA192CBCdecrypt and DEA192CBCencrypt subtitle}} | ||
<var>DEA192CBCdecrypt</var> and <var>DEA192CBCencrypt</var> are synonyms for the [[String class]] function that applies the DEA (Data Encryption Algorithm) using a 64-bit symmetric key to decrypt or encrypt each 64-bit block of input text. CBC (Cipher Block Chaining) refers to a randomizing tactic whereby the result of applying the DEA cipher to a 64-bit block is combined with the next block before its encryption. An initialization vector is used in the first block to make its encryption unique. | |||
For more details about how the algorithm works, see [https://en.wikipedia.org/wiki/Data_Encryption_Standard Data Encryption Standard] and [https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#Cipher Block Chaining (CBC) Cipher Block Chaining (CBC)]. | |||
The length of the returned string is the same as that of the object string. | |||
DEA 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 <b><i>always</i></b> hold: | |||
<p class="code">[[Assert statement|assert]] %string:dea192cbcencrypt(%key):dea192cbcdecrypt(%key) eq %string | |||
</p> | |||
You can use <var>DEA192CBCdecrypt</var> to "document" that you are decrypting, and | |||
use <var>DEA192CBCencrypt</var> to "document" that you are enrypting. You can use <var>DEA192CBCdecrypt</var> and <var>DEA192CBCencrypt</var> interchangeably on the rest of this page. | |||
==Syntax== | ==Syntax== | ||
Line 9: | Line 19: | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table> | <table> | ||
<tr><th>%outString</th><td>string</td></tr> | <tr><th>%outString</th> | ||
<td>A string variable to receive the encrypted or decrypted method object <var class="term">string</var>. Its length is the same as <var class="term">string</var>.</td></tr> | |||
<tr><th>string</th> | <tr><th>string</th> | ||
<td>string</td></tr> | <td>The string to which the method is applied. <var class="term">string</var> must be a multiple of eight bytes in length; its maximum is 32768 bytes. It may be null.</td></tr> | ||
<tr><th>key</th> | <tr><th>key</th> | ||
<td>string, | <td>A 24-byte (only) string variable whose value is used to encrypt or decrypt the method object, <var class="term">string</var>.</td></tr> | ||
<tr><th>initVector</th> | <tr><th>initVector</th> | ||
<td>string | <td>An 8-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.</td></tr> | |||
</table> | </table> | ||
==Usage notes== | ==Usage notes== | ||
<ul> | |||
<li>You are <b><i>not</i></b> prevented from creating confusion by encrypting with <var>DEA192CBCdecrypt</var> and decrypting with <var>DEA192CBCencrypt</var>. </li> | |||
<li>The <var>DEA192CBCdecrypt</var> and <var>DEA192CBCencrypt</var> functions are available as of <var class="product">Model 204</var> 7.6. </li> | |||
</ul> | |||
==Examples== | ==Examples== | ||
In the following example, the output string from the <var>DEA192CBCencrypt</var> method is converted to hex using the <var>[[StringToHex (String function)|StringToHex]]</var> function to reveal its non-displayable characters, then decrypted to return the original input string: | |||
<p class="code">b | |||
%ls is longstring | |||
%string is longstring | |||
%key is string len 24 | |||
%iv is string len 8 | |||
%string = 'onetwothreefour0onetwothreefour0' | |||
%key = '123456781616161624242424' | |||
%iv = 'abcdefgh' | |||
%ls = %string:dea192cbcEncrypt(%key, %iv) | |||
[[PrintText statement|printText]] {~} is {%ls:stringTohex} | |||
printText {~} is: {%ls:dea192cbcDecrypt(%key, %iv)} | |||
end | |||
</p> | |||
The result is: | |||
<p class="output">%ls:stringTohex is: 448060460269E66867F1C8B7D61A733470710B94A433915A6EB10C587C53DAE6 | |||
%ls:dea192cbcDecrypt(%key, %iv) is: onetwothreefour0onetwothreefour0 | |||
</p> | |||
==See also== | ==See also== | ||
<ul> | |||
<li><var>[[DEA64decrypt and DEA64encrypt (String functions)]]</var> </li> | |||
<li><var>[[DEA128decrypt and DEA128encrypt (String functions)]]</var> </li> | |||
<li><var>[[DEA192decrypt and DEA192encrypt (String functions)]]</var> </li> | |||
<li><var>[[DEA64CBCdecrypt and DEA64CBCencrypt (String functions)]]</var> </li> | |||
<li><var>[[DEA128CBCdecrypt and DEA128CBCencrypt (String functions)]]</var> </li> | |||
</ul> | |||
{{Template:String:DEA192CBCdecrypt and DEA192CBCencrypt footer}} | {{Template:String:DEA192CBCdecrypt and DEA192CBCencrypt footer}} |
Revision as of 18:45, 11 March 2016
DEA192CBC encryption or decryption (String class)
[Introduced in Model 204 7.6]
DEA192CBCdecrypt and DEA192CBCencrypt are synonyms for the String class function that applies the DEA (Data Encryption Algorithm) using a 64-bit symmetric key to decrypt or encrypt each 64-bit block of input text. CBC (Cipher Block Chaining) refers to a randomizing tactic whereby the result of applying the DEA cipher to a 64-bit block is combined with the next block before its encryption. 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.
DEA 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:dea192cbcencrypt(%key):dea192cbcdecrypt(%key) eq %string
You can use DEA192CBCdecrypt to "document" that you are decrypting, and use DEA192CBCencrypt to "document" that you are enrypting. You can use DEA192CBCdecrypt and DEA192CBCencrypt interchangeably on the rest of this page.
Syntax
%outString = string:DEA192CBCdecrypt( key, initVector) Throws UnsupportedCrypto, InvalidCryptoKey, InvalidCryptoData, InvalidCryptoInitVector
%outString = string:DEA192CBCencrypt( 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 eight 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 | An 8-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 DEA192CBCdecrypt and decrypting with DEA192CBCencrypt.
- The DEA192CBCdecrypt and DEA192CBCencrypt functions are available as of Model 204 7.6.
Examples
In the following example, the output string from the DEA192CBCencrypt 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 8 %string = 'onetwothreefour0onetwothreefour0' %key = '123456781616161624242424' %iv = 'abcdefgh' %ls = %string:dea192cbcEncrypt(%key, %iv) printText {~} is {%ls:stringTohex} printText {~} is: {%ls:dea192cbcDecrypt(%key, %iv)} end
The result is:
%ls:stringTohex is: 448060460269E66867F1C8B7D61A733470710B94A433915A6EB10C587C53DAE6 %ls:dea192cbcDecrypt(%key, %iv) is: onetwothreefour0onetwothreefour0
See also
- DEA64decrypt and DEA64encrypt (String functions)
- DEA128decrypt and DEA128encrypt (String functions)
- DEA192decrypt and DEA192encrypt (String functions)
- DEA64CBCdecrypt and DEA64CBCencrypt (String functions)
- DEA128CBCdecrypt and DEA128CBCencrypt (String functions)