“LlBase64ToString”的版本间的差异

来自人工智能助力教育知识百科
跳转至: 导航搜索
Mkx讨论 | 贡献
 
第5行: 第5行:
 
|函数名=Function: string llBase64ToString( string str );
 
|函数名=Function: string llBase64ToString( string str );
 
|参数= 参数:string str – Base64 string  
 
|参数= 参数:string str – Base64 string  
|返回值= 返回值:Returns a string that is the Base64 str decoded into a conventional string.
+
|返回值= 返回值:返回一个字符串,该字符串是被解码为常规字符串的Base64 str。
  
 +
|注意事项=如果转换创建了任何不可打印的字符,则将它们转换为空格。
  
|注意事项=If the conversion creates any unprintable characters, they are converted to spaces.
+
将无效字符转换为问号('?')
 
 
Converts invalid characters into question marks ('?').
 
 
 
  
 
|示例=
 
|示例=
第36行: 第34行:
 
</pre>
 
</pre>
  
|相关函数= [[llXorBase64]]  – Article also discusses xor based Cryptography.
+
|相关函数= [[llXorBase64]]  – 文章还讨论了基于xor的密码学。
  
 
[[llStringToBase64]]
 
[[llStringToBase64]]

2020年4月14日 (二) 14:42的最新版本

Template:Needs Translation/


函数名
Function: string llBase64ToString( string str );
参数:string str – Base64 string
返回值:返回一个字符串,该字符串是被解码为常规字符串的Base64 str。
注意事项
如果转换创建了任何不可打印的字符,则将它们转换为空格。

将无效字符转换为问号('?')。

示例
default {
    state_entry()
    {
        string test = llBase64ToString("U2VjcmV0Ok9wZW4=");
        llSay(0,test );
    }
}

This can be used in Basic Authentication, such as this login:

GET / HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)
Host: www.example.com
Authorization: Basic U2VjcmV0Ok9wZW4= 
llBase64ToString("U2VjcmV0Ok9wZW4="); //will return the string "Secret:Open"
相关函数
llXorBase64 – 文章还讨论了基于xor的密码学。

llStringToBase64

llBase64ToInteger

相关事件