Difference between revisions of "TLocalUserAuthenticator"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit Authentication __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-col...")
 
(No difference)

Latest revision as of 22:35, 23 October 2025

Return to Unit Authentication


Description


To be documented

Class definitions



TLocalUserAuthenticator = class(TAuthenticator)

Note: An authenticator module supporting username and password authentication from a local plain text source.
 
public
constructor Create;  
destructor Destroy; override;  
private
FUsernames:TLinkedObjList;  
public
function CheckUsername(const AUsername:String):LongWord; override;  
function CheckUserPassword(const AUsername,APassword:String):LongWord; override;  
 
function AddUsername(const AUsername,APassword:String):LongWord; override;  
function DeleteUsername(const AUsername,APassword:String):LongWord; override;  


Function declarations



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


destructor TLocalUserAuthenticator.Destroy;
Description: To be documented
Note None documented


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


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


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


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


Return to Unit Reference