Difference between revisions of "Cryptography.b64"
From GiderosMobile
(Created page with "'''Available since:''' Gideros 2021.11<br/> '''Class:''' Cryptography<br/> === Description === Base64 encode a some data <source lang="lua"> (string) = Cryptography.b64(...") |
|||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 3: | Line 3: | ||
=== Description === | === Description === | ||
| − | Base64 encode | + | Base64 encode some data. |
| − | + | <syntaxhighlight lang="lua"> | |
| − | < | ||
(string) = Cryptography.b64(data) | (string) = Cryptography.b64(data) | ||
| − | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === | ||
| − | '''data''': (string) | + | '''data''': (string) the data to be base 64 encoded<br/> |
=== Return values === | === Return values === | ||
Latest revision as of 18:41, 15 December 2023
Available since: Gideros 2021.11
Class: Cryptography
Description
Base64 encode some data.
(string) = Cryptography.b64(data)
Parameters
data: (string) the data to be base 64 encoded
Return values
Returns (string) Base64 encoded string