Difference between revisions of "TNullAuthenticator"

From Ultibo.org
Jump to: navigation, search
 
Line 12: Line 12:
 
----
 
----
  
 
'''Null authenticator'''
 
  
 
<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;">
Line 56: Line 54:
  
  
'''TNullAuthenticator'''
 
 
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;">
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;">
 
<pre style="border: 0; padding-bottom:0px;">constructor TNullAuthenticator.Create;</pre>
 
<pre style="border: 0; padding-bottom:0px;">constructor TNullAuthenticator.Create;</pre>

Latest revision as of 22:32, 23 October 2025

Return to Unit Authentication


Description


To be documented

Class definitions



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



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