API17:JSimpleCrypt
From Joomla! Documentation
(Difference between revisions)
(Updated to r1448:247ba8d88526) |
m (moving preparation) |
||
| (3 intermediate revisions by one user not shown) | |||
| Line 14: | Line 14: | ||
|- | |- | ||
|public | |public | ||
| − | |[[JSimpleCrypt::__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 | + | |[[API17:JSimpleCrypt::decrypt|decrypt]] |
|Decrypt. | |Decrypt. | ||
|- | |- | ||
|public | |public | ||
| − | |[[JSimpleCrypt::encrypt | + | |[[API17:JSimpleCrypt::encrypt|encrypt]] |
|Encrypt. | |Encrypt. | ||
|- | |- | ||
|protected | |protected | ||
| − | |[[JSimpleCrypt::_charToInt | + | |[[API17:JSimpleCrypt::_charToInt|_charToInt]] |
|CharToInt. | |CharToInt. | ||
|- | |- | ||
|protected | |protected | ||
| − | |[[JSimpleCrypt::_hexToInt | + | |[[API17:JSimpleCrypt::_hexToInt|_hexToInt]] |
|HextoInt. | |HextoInt. | ||
|- | |- | ||
|protected | |protected | ||
| − | |[[JSimpleCrypt::_hexToIntArray | + | |[[API17:JSimpleCrypt::_hexToIntArray|_hexToIntArray]] |
|HexToIntArray. | |HexToIntArray. | ||
|- | |- | ||
|protected | |protected | ||
| − | |[[JSimpleCrypt::_intToHex | + | |[[API17:JSimpleCrypt::_intToHex|_intToHex]] |
|inToHex | |inToHex | ||
|- | |- | ||
|protected | |protected | ||
| − | |[[JSimpleCrypt::_xorCharString | + | |[[API17:JSimpleCrypt::_xorCharString|_xorCharString]] |
|Decrypt. | |Decrypt. | ||
|- | |- | ||
|protected | |protected | ||
| − | |[[JSimpleCrypt::_xorString | + | |[[API17:JSimpleCrypt::_xorString|_xorString]] |
|XorString. | |XorString. | ||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/utilities/simplecrypt.php | * '''Defined in''' libraries/joomla/utilities/simplecrypt.php | ||
| − | * '''Extends''' [[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 | + | * {{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> | + | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> |
Latest revision as of 21:32, 11 May 2013
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
[edit]
JSimpleCrypt
[edit] Description
Description:JSimpleCrypt [Edit Descripton]
[edit] Methods
| 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
[edit] Importing
jimport( 'joomla.utilities.simplecrypt' );
[edit] See also
SeeAlso:JSimpleCrypt [Edit See Also]
[edit] User contributed notes
<CodeExamplesForm />
