API15:JSimpleCrypt/decrypt
From Joomla! Documentation
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.
Description:JSimpleCrypt/decrypt
Contents |
Syntax
decrypt($s)
| Parameter Name | Default Value | Description |
|---|---|---|
| $s |
Defined in
libraries/joomla/utilities/simplecrypt.php
Importing
jimport( 'joomla.utilities.simplecrypt' );
Source Body
function decrypt($s) { $ai = $this->_hexToIntArray($s); (string) $s1 = $this->_xorString($ai); return $s1; }
[Edit See Also] SeeAlso:JSimpleCrypt/decrypt
Examples
<CodeExamplesForm />
