API17

Difference between revisions of "JUserHelper::getCryptedPassword"

From Joomla! Documentation

m (moving preparation)
m (clean up)
Line 4: Line 4:
 
Formats a password using the current encryption.  
 
Formats a password using the current encryption.  
  
{{Description:JUserHelper::getCryptedPassword}}
+
{{subst:Description:JUserHelper::getCryptedPassword}}
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JUserHelper::getCryptedPassword|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
<source lang="php">
 
<source lang="php">
 
public static function getCryptedPassword (
 
public static function getCryptedPassword (
Line 53: Line 51:
 
* {{JVer|11.1}} Subpackage [[API17:Subpackage_User|User]]
 
* {{JVer|11.1}} Subpackage [[API17:Subpackage_User|User]]
 
* [[API17:JUserHelper::getCryptedPassword|Other versions of JUserHelper::getCryptedPassword]]
 
* [[API17:JUserHelper::getCryptedPassword|Other versions of JUserHelper::getCryptedPassword]]
{{SeeAlso:JUserHelper::getCryptedPassword}}
+
{{subst:SeeAlso:JUserHelper::getCryptedPassword}}
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JUserHelper::getCryptedPassword|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
 
<CodeExamplesForm />
 
<CodeExamplesForm />

Revision as of 11:22, 24 March 2017

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 JUserHelper::getCryptedPassword[edit]

Description[edit]

Formats a password using the current encryption.

{{subst:Description:JUserHelper::getCryptedPassword}}

public static function getCryptedPassword (
        $plaintext
        $salt= ''
        $encryption= 'md5-hex'
        $show_encrypt=false
)
Parameter Type Default Description
$plaintext string The plaintext password to encrypt.
$salt string The salt to use to encrypt the password. [] If not present, a new salt will be generated.
$encryption string 'md5-hex' The kind of pasword encryption to use. Defaults to md5-hex.
$show_encrypt boolean false Some password systems prepend the kind of encryption to the crypted password ({SHA}, etc). Defaults to false.
  • Returns string The encrypted password.
  • Defined on line 296 of libraries/joomla/user/helper.php
  • Referenced by

See also[edit]

{{subst:SeeAlso:JUserHelper::getCryptedPassword}}

User contributed notes[edit]

<CodeExamplesForm />