$Lstr Base64 Encode: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
Line 38: Line 38:
<li>[[Fast/Unload User Language Interface]]</li>
<li>[[Fast/Unload User Language Interface]]</li>
<li>[http://m204wiki.rocketsoftware.com/images/4/4a/JoclrNew.pdf Janus Open Client]</li>
<li>[http://m204wiki.rocketsoftware.com/images/4/4a/JoclrNew.pdf Janus Open Client]</li>
<li>[[Janus Open Server]]</li>
<li>[http://m204wiki.rocketsoftware.com/images/1/17/JosrvrNew.pdf Janus Open Server]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Sockets]]</li>
<li>[[Janus Web Server]]</li>
<li>[[Janus Web Server]]</li>

Revision as of 00:06, 13 September 2013

Convert byte string to base 64

Note: Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Lstr_Base64_Encode function is StringToBase64.

This function converts a byte string into its base 64 encoding. It is identical to $Base64_Encode, except it is longstring capable.

The $Lstr_Base64_Encode function accepts one argument and returns a string result which is the base 64 encoding of that argument.

The first argument is a longstring.

The returned value is the base 64 encoding of the argument string.

Syntax

%coded = $Lstr_Base64_Encode(string)

%coded is set to the base 64 encoding of string

Usage notes

Example

Given the following argument of length 3:

%junk = $Lstr_Base64_Encode($X2C('001083'))

%junk is set to the byte string (of length 4) represented in character as 'ABCD'.

Products authorizing $Lstr_Base64_Encode