JSimpleCrypt/1.5
From Joomla! Documentation
< JSimpleCrypt(Difference between revisions)
(Bulk upload by Doxiki2) |
(Layout updates) |
||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| + | =={{JVer|1.5}} JSimpleCrypt== | ||
| + | ===Description=== | ||
| + | {{Description:JSimpleCrypt}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[Description:JSimpleCrypt|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JSimpleCrypt|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
===Methods=== | ===Methods=== | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
| + | !Visibility | ||
!Method name | !Method name | ||
!Description | !Description | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::__construct/1.5|__construct]] | |[[JSimpleCrypt::__construct/1.5|__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 | ||
|[[JSimpleCrypt::_charToInt/1.5|_charToInt]] | |[[JSimpleCrypt::_charToInt/1.5|_charToInt]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::_hexToInt/1.5|_hexToInt]] | |[[JSimpleCrypt::_hexToInt/1.5|_hexToInt]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::_hexToIntArray/1.5|_hexToIntArray]] | |[[JSimpleCrypt::_hexToIntArray/1.5|_hexToIntArray]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::_intToHex/1.5|_intToHex]] | |[[JSimpleCrypt::_intToHex/1.5|_intToHex]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::_xorCharString/1.5|_xorCharString]] | |[[JSimpleCrypt::_xorCharString/1.5|_xorCharString]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::_xorString/1.5|_xorString]] | |[[JSimpleCrypt::_xorString/1.5|_xorString]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::decrypt/1.5|decrypt]] | |[[JSimpleCrypt::decrypt/1.5|decrypt]] | ||
| | | | ||
|- | |- | ||
| + | |public | ||
|[[JSimpleCrypt::encrypt/1.5|encrypt]] | |[[JSimpleCrypt::encrypt/1.5|encrypt]] | ||
| | | | ||
|- | |- | ||
|} | |} | ||
| + | * '''Defined in''' libraries/joomla/utilities/simplecrypt.php | ||
| + | * '''Extends''' [[JObject/1.5|JObject]] | ||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.utilities.simplecrypt' );</source> | <source lang="php">jimport( 'joomla.utilities.simplecrypt' );</source> | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|1.5}} '''JSimpleCrypt''' on [http://api.joomla.org/Joomla-Framework/Utilities/JSimpleCrypt.html api.joomla.org] | ||
| + | * {{JVer|1.5}} '''JSimpleCrypt source code''' on [[jframework15:utilities/simplecrypt.php|JoomlaCode]] | ||
| + | * {{JVer|1.5}} Subpackage [[Subpackage Utilities/1.5|Utilities]] | ||
| + | * [[JSimpleCrypt|Other versions of JSimpleCrypt]] | ||
| + | {{SeeAlso:JSimpleCrypt}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JSimpleCrypt|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JSimpleCrypt|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 62: | Line 71: | ||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:Framework]][[Category:Framework 1.5]][[Category:JSimpleCrypt]]</noinclude> | <noinclude>[[Category:Framework]][[Category:Framework 1.5]][[Category:JSimpleCrypt]]</noinclude> | ||
Revision as of 18:12, 25 April 2011
JSimpleCrypt
Description
Description:JSimpleCrypt [Edit Descripton]
Methods
| Visibility | Method name | Description |
|---|---|---|
| public | __construct | Object Constructor takes an optional key to be used for encryption/decryption. |
| public | _charToInt | |
| public | _hexToInt | |
| public | _hexToIntArray | |
| public | _intToHex | |
| public | _xorCharString | |
| public | _xorString | |
| public | decrypt | |
| public | encrypt |
- Defined in libraries/joomla/utilities/simplecrypt.php
- Extends JObject
Importing
jimport( 'joomla.utilities.simplecrypt' );
See also
-
JSimpleCrypt on api.joomla.org
-
JSimpleCrypt source code on JoomlaCode
-
Subpackage Utilities
- Other versions of JSimpleCrypt
SeeAlso:JSimpleCrypt [Edit See Also]
User contributed notes
<CodeExamplesForm />