llStringToBase64

From Second Life Wiki
Jump to navigation Jump to search

Summary

Function: string llStringToBase64( string str );

Returns the string Base64 representation of the str interpreted as an UTF-8 byte sequence

• string str

If extra bits are needed to complete the last base64 symbol, those extra bits will be zero.
To go in the other direction, use llBase64ToString.

Examples

integer getStringBytes(string msg) {
    return (llStringLength((string)llParseString2List(llStringToBase64(msg), ["="], [])) * 3) >> 2;
}

See Also

Deep Notes

Search JIRA for related Issues

Signature

function string llStringToBase64( string str );