Difference between revisions of "Cryptography.aesEncrypt"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2016.04<br/>
 
'''Available since:''' Gideros 2016.04<br/>
 
=== Description ===
 
=== Description ===
Encrypt a string with AES 128 cipher, either in ECB mode or CBC mode
+
<translate>Encrypt a string with AES 128 cipher, either in ECB mode or CBC mode</translate>
 
<source lang="lua">
 
<source lang="lua">
 
(string) = Cryptography.aesEncrypt(plaintext,key,iv,paddingType)
 
(string) = Cryptography.aesEncrypt(plaintext,key,iv,paddingType)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''plaintext''': (string) The message to be encrypted <br/>
+
'''plaintext''': (string) <translate>The message to be encrypted</translate> <br/>
'''key''': (string) encryption key as a 16 byte string <br/>
+
'''key''': (string) <translate>encryption key as a 16 byte string</translate> <br/>
'''iv''': (string) a 16 byte IV to be used for CBC mode. If not provided ECB mode is used. '''optional'''<br/>
+
'''iv''': (string) <translate>a 16 byte IV to be used for CBC mode. If not provided ECB mode is used.</translate> '''optional'''<br/>
'''paddingType''': (number) Type of padding to be used. Currently defined values are:</br>
+
'''paddingType''': (number) <translate>Type of padding to be used. Currently defined values are:</br>
 
<ul>
 
<ul>
 
<li>0: 0 padding </li>
 
<li>0: 0 padding </li>
 
<li>1: PKCS7 padding</li>
 
<li>1: PKCS7 padding</li>
</ul> '''optional'''<br/>
+
</ul></translate> '''optional'''<br/>
 
=== Return values ===
 
=== Return values ===
'''Returns''' (string) ciphered message<br/>
+
'''Returns''' (string) <translate>ciphered message</translate><br/>

Revision as of 14:34, 23 August 2018

Available since: Gideros 2016.04

Description

Encrypt a string with AES 128 cipher, either in ECB mode or CBC mode

(string) = Cryptography.aesEncrypt(plaintext,key,iv,paddingType)

Parameters

plaintext: (string) The message to be encrypted
key: (string) encryption key as a 16 byte string
iv: (string) a 16 byte IV to be used for CBC mode. If not provided ECB mode is used. optional
paddingType: (number) Type of padding to be used. Currently defined values are:

  • 0: 0 padding
  • 1: PKCS7 padding

optional

Return values

Returns (string) ciphered message