Difference between revisions of "Cryptography.aesDecrypt"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''<translate>Available since</translate>:''' Gideros 2016.04<br/>
 
'''<translate>Available since</translate>:''' Gideros 2016.04<br/>
 +
'''<translate>Class</translate>:''' [[Special:MyLanguage/Cryptography|Cryptography]]<br/>
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
<translate>Decrypt an AES 128 cipher text, ECB or CBC</translate>
 
<translate>Decrypt an AES 128 cipher text, ECB or CBC</translate>

Revision as of 10:27, 24 August 2018

Available since: Gideros 2016.04
Class: Cryptography

Description

Decrypt an AES 128 cipher text, ECB or CBC

(string) = Cryptography.aesDecrypt(ciphertext,key,iv,paddingType)

Parameters

ciphertext: (string) AES128 encrypted message
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) deciphered message