Difference between revisions of "Unit Authentication"
From Ultibo.org
| Line 25: | Line 25: | ||
=== Type definitions === | === Type definitions === | ||
---- | ---- | ||
| + | |||
'''Authentication check password event''' | '''Authentication check password event''' | ||
Revision as of 03:38, 23 October 2025
Return to Unit Reference
Contents
Description
Ultibo Authentication Interface unit
Constants
Authenticator flag
AUTHENTICATOR_FLAG_* AUTHENTICATOR_FLAG_NONE = $00000000;
|
Type definitions
Authentication check password event
TCheckPasswordEvent = function(ASource:TAuthenticator; const APassword:String):LongWord of Object;
|
Authentication check username event
TCheckUsernameEvent = function(ASource:TAuthenticator; const AUsername:String):LongWord of Object;
|
Authentication check user password event
TCheckUserPasswordEvent = function(ASource:TAuthenticator; const AUsername,APassword:String):LongWord of Object;
|
Authentication check token event
FCheckTokenEvent = function(ASource:TAuthenticator; const AToken,AValue:String):LongWord of Object;
|
Authentication create token event
TCreateTokenEvent = function(ASource:TAuthenticator; const AValue:String; var AToken:String; ATimeout:LongWord):LongWord of Object;
|
Authentication delete token event
TDeleteTokenEvent = function(ASource:TAuthenticator; const AToken,AValue:String):LongWord of Object;
|
Authentication check key event
TCheckKeyEvent = function(ASource:TAuthenticator; AData:Pointer; ASize:LongWord):LongWord of Object;
|
Class definitions
Authentication specific classes
TAuthenticator = class(TObject)
|
TNullAuthenticator = class(TAuthenticator)
|
Public variables
None defined
Function declarations
Initialization functions
procedure AuthInit;
Description: To be documented
| Note | None documented |
|---|
Return to Unit Reference