API15

Difference between revisions of "JSimpleCrypt/decrypt"

From Joomla! Documentation

< API15:JSimpleCrypt
(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JSimpleCrypt/decryp...)
 
m (removing red link to edit, no existant pages)
Line 1: Line 1:
 
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JSimpleCrypt/decrypt|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JSimpleCrypt/decrypt}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 36: Line 35:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JSimpleCrypt/decrypt|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JSimpleCrypt/decrypt}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 51: Line 50:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:49, 12 May 2013

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

decrypt($s)
Parameter Name Default Value Description
$s

Defined in[edit]

libraries/joomla/utilities/simplecrypt.php

Importing[edit]

jimport( 'joomla.utilities.simplecrypt' );

Source Body[edit]

function decrypt($s)
{
        $ai = $this->_hexToIntArray($s);
        (string) $s1 = $this->_xorString($ai);
        return $s1;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />