SecureBlackbox 2020 C++ Edition

Questions / Feedback?

DefaultAuthMethods Property

Contains the list of default authentication methods.

Syntax

ANSI (Cross Platform)
char* GetDefaultAuthMethods();
int SetDefaultAuthMethods(const char* lpszDefaultAuthMethods); Unicode (Windows) LPWSTR GetDefaultAuthMethods();
INT SetDefaultAuthMethods(LPCWSTR lpszDefaultAuthMethods);
@property (nonatomic,readwrite,assign,getter=defaultAuthMethods,setter=setDefaultAuthMethods:) NSString* defaultAuthMethods;
- (NSString*)defaultAuthMethods;
- (void)setDefaultAuthMethods:(NSString*)newDefaultAuthMethods;
#define PID_AUTHENTICATOR_DEFAULTAUTHMETHODS 43

SECUREBLACKBOX_EXTERNAL void* SECUREBLACKBOX_CALL SecureBlackbox_Authenticator_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
SECUREBLACKBOX_EXTERNAL int SECUREBLACKBOX_CALL SecureBlackbox_Authenticator_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

Use this property to specify a list of default authentication methods to apply to users that are not included in the Users database. Assign this property with a comma-separated list of standard and custom authentication methods.

The following standard authentication methods are supported by the component:

  • password
  • otp-h
  • otp-t
  • dcauth

You can use any names not clashing with the standard methods to indicate your own custom authentication methods. Use CustomAuthStart and AuthVerify events to handle custom authentication methods.

Data Type

String

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 C++ Edition - Version 20.0 [Build 8166]