Difference between revisions of "TLocalSessionAuthenticator"

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:39, 23 October 2025

Return to Unit Authentication


Description


To be documented

Class definitions



TLocalSessionAuthenticator = class(TAuthenticator)

Note: An authenticator module supporting username and password authentication from a local plain text source.
 
public
constructor Create;  
destructor Destroy; override;  
private
FSessions:TLinkedObjList;  
protected
function FindToken(const AValue:String; var AToken:String):LongWord; virtual;  
function GenerateToken(const AValue:String;var AToken:String):LongWord; virtual;  
public
function CheckToken(const AToken,AValue:String):LongWord; override;  
 
function CreateToken(const AValue:String; var AToken:String; ATimeout:LongWord):LongWord; override;  
function DeleteToken(const AToken,AValue:String):LongWord; override;  


Function declarations



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


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


function TLocalSessionAuthenticator.FindToken(const AValue:String; var AToken:String):LongWord;
Description: To be documented
Note None documented


function TLocalSessionAuthenticator.GenerateToken(const AValue:String; var AToken:String):LongWord;
Description: To be documented
Note None documented


function TLocalSessionAuthenticator.CheckToken(const AToken,AValue:String):LongWord;
Description: To be documented
Note None documented


function TLocalSessionAuthenticator.CreateToken(const AValue:String; var AToken:String; ATimeout:LongWord):LongWord;
Description: To be documented
Note None documented


function TLocalSessionAuthenticator.DeleteToken(const AToken,AValue:String):LongWord;
Description: To be documented
Note None documented


Return to Unit Reference