Difference between revisions of "TNullAuthenticator"
From Ultibo.org
(Created page with "Return to Unit Authentication __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- === Function declarations =...") |
|||
Line 14: | Line 14: | ||
+ | '''Null authenticator''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | |||
+ | <code>TNullAuthenticator = class(TAuthenticator)</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|Note: An authenticator module that accepts any username and password. | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | |colspan="2"|<div style="font-family: monospace,courier;">'''public'''</div> | ||
+ | |- | ||
+ | | <code>function UsernamePrompt:String; override;</code> | ||
+ | | style="width: 50%;"| | ||
+ | |- | ||
+ | | <code>function PasswordPrompt(const AUsername:String):String; override;</code> | ||
+ | | | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>function CheckUsername(const AUsername:String):LongWord; override;</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>function CheckPassword(const AUsername,APassword:String):LongWord; override;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
=== Function declarations === | === Function declarations === |
Revision as of 01:17, 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
Return to Unit Reference