LlBase64ToString
De DigiWiki.
(Différences entre les versions)
(Page créée avec « <lsl> default { state_entry() { string test = llBase64ToString("U2VjcmV0Ok9wZW4="); llSay(0,test ); } } </lsl> This can be used in {{Wikipedia|Basic … ») |
|||
| Ligne 10 : | Ligne 10 : | ||
</lsl> | </lsl> | ||
| - | This can be used in | + | This can be used in Basic access authentication, such as this login: |
<pre> | <pre> | ||
GET / HTTP/1.1 | GET / HTTP/1.1 | ||
Version actuelle en date du 17 mars 2012 à 08:56
default { state_entry() { string test = llBase64ToString("U2VjcmV0Ok9wZW4="); llSay(0,test ); } }
This can be used in Basic access 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"


