Location:
e32std.h
Link against: euser.lib
Password
Supported from 5.0
A collection of static functions for handling passwords.
Password handling is implemented by a concrete implementation of
the CSecurityBase
interface.
Defined in Password
:
IsEnabled()
, IsValid()
, Set()
, SetEnabled()
static TBool IsEnabled();
Determines whether password checking is enabled.
The process is implemented by the IsEnabled()
function of the CSecurityBase
interface.
|
static TInt SetEnabled(const TPassword& aPassword,TBool aIsEnabled);
Sets the password enabled state.
The process is implemented by the SetEnabled()
function of the CSecurityBase
interface.
|
|
static TBool IsValid(const TPassword& aPassword);
Determines whether the specified password is valid.
The validation process is implemented by the PrepareL()
function of the CSecurityBase
interface.
|
|
static TInt Set(const TPassword& anOldPassword,const TPassword& aNewPassword);
Changes the password.
The process is implemented by the SetL()
function of the
CSecurityBase
interface.
|
|