API17

Difference between revisions of "JSimpleCrypt"

From Joomla! Documentation

(Updated to r1448:247ba8d88526)
m (moving preparation)
(3 intermediate revisions by the same user not shown)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JSimpleCrypt::__construct/11.1|__construct]]
+
|[[API17:JSimpleCrypt::__construct|__construct]]
 
|Object Constructor takes an optional key to be used for encryption/decryption.  
 
|Object Constructor takes an optional key to be used for encryption/decryption.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSimpleCrypt::decrypt/11.1|decrypt]]
+
|[[API17:JSimpleCrypt::decrypt|decrypt]]
 
|Decrypt.  
 
|Decrypt.  
 
|-
 
|-
 
|public  
 
|public  
|[[JSimpleCrypt::encrypt/11.1|encrypt]]
+
|[[API17:JSimpleCrypt::encrypt|encrypt]]
 
|Encrypt.  
 
|Encrypt.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSimpleCrypt::_charToInt/11.1|_charToInt]]
+
|[[API17:JSimpleCrypt::_charToInt|_charToInt]]
 
|CharToInt.  
 
|CharToInt.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSimpleCrypt::_hexToInt/11.1|_hexToInt]]
+
|[[API17:JSimpleCrypt::_hexToInt|_hexToInt]]
 
|HextoInt.  
 
|HextoInt.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSimpleCrypt::_hexToIntArray/11.1|_hexToIntArray]]
+
|[[API17:JSimpleCrypt::_hexToIntArray|_hexToIntArray]]
 
|HexToIntArray.  
 
|HexToIntArray.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSimpleCrypt::_intToHex/11.1|_intToHex]]
+
|[[API17:JSimpleCrypt::_intToHex|_intToHex]]
 
|inToHex  
 
|inToHex  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSimpleCrypt::_xorCharString/11.1|_xorCharString]]
+
|[[API17:JSimpleCrypt::_xorCharString|_xorCharString]]
 
|Decrypt.  
 
|Decrypt.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JSimpleCrypt::_xorString/11.1|_xorString]]
+
|[[API17:JSimpleCrypt::_xorString|_xorString]]
 
|XorString.  
 
|XorString.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/utilities/simplecrypt.php
 
* '''Defined in''' libraries/joomla/utilities/simplecrypt.php
* '''Extends''' [[JObject/11.1|JObject]]
+
* '''Extends''' [[API17:JObject|JObject]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.utilities.simplecrypt' );</source>
 
<source lang="php">jimport( 'joomla.utilities.simplecrypt' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JSimpleCrypt source code''' on [[jplatform:utilities/simplecrypt.php|BitBucket]]
 
* {{JVer|11.1}} '''JSimpleCrypt source code''' on [[jplatform:utilities/simplecrypt.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Utilities/11.1|Utilities]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Utilities|Utilities]]
* [[JSimpleCrypt|Other versions of JSimpleCrypt]]
+
* [[API17:JSimpleCrypt|Other versions of JSimpleCrypt]]
 
{{SeeAlso:JSimpleCrypt}}
 
{{SeeAlso:JSimpleCrypt}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
Line 73: Line 73:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JSimpleCrypt]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 21:32, 11 May 2013

The "API17" 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.

Joomla 11.1 JSimpleCrypt[edit]

Description[edit]

Template:Description:JSimpleCrypt [Edit Descripton]

Methods[edit]

Visibility Method name Description
public __construct Object Constructor takes an optional key to be used for encryption/decryption.
public decrypt Decrypt.
public encrypt Encrypt.
protected _charToInt CharToInt.
protected _hexToInt HextoInt.
protected _hexToIntArray HexToIntArray.
protected _intToHex inToHex
protected _xorCharString Decrypt.
protected _xorString XorString.
  • Defined in libraries/joomla/utilities/simplecrypt.php
  • Extends JObject

Importing[edit]

jimport( 'joomla.utilities.simplecrypt' );

See also[edit]

Template:SeeAlso:JSimpleCrypt [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />