Difference between revisions of "Cryptography.aesEncrypt"

From GiderosMobile
(----)
Line 22: Line 22:
 
'''Returns''' (string) ciphered message<br/>
 
'''Returns''' (string) ciphered message<br/>
  
----
+
{{Cryptography}}
{{Special:PrefixIndex/Cryptography}}
 
<br/>
 

Revision as of 02:17, 3 December 2019

Available since: Gideros 2016.04
Class: Cryptography

Description

Encrypt a string with AES 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,24 or 32 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 optional
  • 1: PKCS7 padding optional

Return values

Returns (string) ciphered message