Difference between revisions of "Cryptography.aesEncrypt"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.04<br/> === Description === Encrypt a string with AES 128 cipher, either in ECB mode or CBC mode <source lang="lua"> (string), =...") |
|||
Line 4: | Line 4: | ||
Encrypt a string with AES 128 cipher, either in ECB mode or CBC mode | Encrypt a string with AES 128 cipher, either in ECB mode or CBC mode | ||
<source lang="lua"> | <source lang="lua"> | ||
− | (string) | + | (string) = Cryptography.aesEncrypt(plaintext,key,iv,paddingType) |
</source> | </source> | ||
− | '''plaintext | + | '''plaintext''': (string) The message to be encrypted ''''''<br/> |
− | '''key | + | '''key''': (string) encryption key as a 16 byte string ''''''<br/> |
− | '''iv | + | '''iv''': (string) a 16 byte IV to be used for CBC mode. If not provided ECB mode is used. '''optional'''<br/> |
− | '''paddingType | + | '''paddingType''': (number) Type of padding to be used. Currently defined values are:</br> |
<ul> | <ul> | ||
<li>0: 0 padding </li> | <li>0: 0 padding </li> |
Revision as of 10:20, 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)
'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
Returns (string) ciphered message