TNullAuthenticator

From Ultibo.org
Revision as of 05:05, 23 October 2025 by Ultibo (Talk | contribs)

Jump to: navigation, search

Return to Unit Authentication


Description


To be documented

Class definitions



Null authenticator

TNullAuthenticator = class(TAuthenticator)

Note: An authenticator module that accepts any non blank password or username and password.
 
public
constructor Create;  
protected
procedure SetMode(AMode:LongWord); override;  
public
function CheckPassword(const APassword:String):LongWord; override;  
 
function CheckUsername(const AUsername:String):LongWord; override;  
function CheckUserPassword(const AUsername,APassword:String):LongWord; override;  


Function declarations



TNullAuthenticator

constructor TNullAuthenticator.Create;
Description: To be documented
Note None documented


procedure TNullAuthenticator.SetMode(AMode:LongWord);
Description: To be documented
Note None documented


function TNullAuthenticator.CheckPassword(const APassword:String):LongWord;
Description: To be documented
Note None documented


function TNullAuthenticator.CheckUsername(const AUsername:String):LongWord;
Description: To be documented
Note None documented


function TNullAuthenticator.CheckUserPassword(const AUsername,APassword:String):LongWord;
Description: To be documented
Note None documented


Return to Unit Reference