Difference between revisions of "Cryptography.unb64"

From GiderosMobile
(Created page with "'''Available since:''' Gideros 2021.11<br/> '''Class:''' Cryptography<br/> === Description === Base64 decode a string <source lang="lua"> (string) = Cryptography.unb64(s...")
 
m
Line 3: Line 3:
  
 
=== Description ===
 
=== Description ===
Base64 decode a string
+
Base64 decode a string.
 
 
 
<source lang="lua">
 
<source lang="lua">
 
(string) = Cryptography.unb64(string)
 
(string) = Cryptography.unb64(string)
Line 10: Line 9:
  
 
=== Parameters ===
 
=== Parameters ===
'''string''': (string) The base 64 encoded string<br/>
+
'''string''': (string) the base 64 encoded string<br/>
  
 
=== Return values ===
 
=== Return values ===

Revision as of 01:39, 23 March 2022

Available since: Gideros 2021.11
Class: Cryptography

Description

Base64 decode a string.

(string) = Cryptography.unb64(string)

Parameters

string: (string) the base 64 encoded string

Return values

Returns (string) decoded data