AES256CBCencrypt (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
JALWiccan (talk | contribs)
Automatically generated page update
 
JDamon (talk | contribs)
m Added key length and initVector length
Line 10: Line 10:
<td>string</td></tr>
<td>string</td></tr>
<tr><th>key</th>
<tr><th>key</th>
<td>string</td></tr>
<td>string, length 32</td></tr>
<tr><th>initVector</th>
<tr><th>initVector</th>
<td>string</td></tr>
<td>string, length 16</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
==Examples==
==See also==
==See also==
{{Template:String:AES256CBCencrypt footer}}
{{Template:String:AES256CBCencrypt footer}}

Revision as of 16:38, 25 February 2015

AES 256-bit key CBC decryption (String class)


This page is under construction.

Syntax

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

Syntax terms

%outStringstring
string string
key string, length 32
initVector string, length 16

Usage notes

Examples

See also