Difference between revisions of "TNullAuthenticator"

From Ultibo.org
Jump to: navigation, search
 
Line 8: Line 8:
  
 
''To be documented''
 
''To be documented''
 
  
 
=== Class definitions ===
 
=== Class definitions ===

Latest revision as of 01:21, 27 April 2018

Return to Unit Authentication


Description


To be documented

Class definitions



Null authenticator

TNullAuthenticator = class(TAuthenticator)

Note: An authenticator module that accepts any username and password.
 
public
function UsernamePrompt:String; override;  
function PasswordPrompt(const AUsername:String):String; override;  
 
function CheckUsername(const AUsername:String):LongWord; override;  
function CheckPassword(const AUsername,APassword:String):LongWord; override;  


Function declarations



TNullAuthenticator

function TNullAuthenticator.UsernamePrompt:String;
Description: To be documented
Note None documented


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


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


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


Return to Unit Reference