Difference between revisions of "TLocalBasicAuthenticator"

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...")
 
 
Line 15: Line 15:
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
  
<code>TNullAuthenticator = class(TAuthenticator)</code>
+
<code>TLocalBasicAuthenticator= class(TAuthenticator)</code>
 
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"

Latest revision as of 22:29, 23 October 2025

Return to Unit Authentication


Description


To be documented

Class definitions



TLocalBasicAuthenticator= class(TAuthenticator)

Note: An authenticator module supporting password only authentication from a local plain text source.
 
public
constructor Create;  
destructor Destroy; override;  
private
FPasswords:TLinkedObjList;  
public
function CheckPassword(const APassword:String):LongWord; override;  
 
function AddPassword(const APassword:String):LongWord; override;  
function DeletePassword(const APassword:String):LongWord; override;  


Function declarations



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


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


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


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


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


Return to Unit Reference