Discuss this help topic in SecureBlackbox Forum
This event is fired when the client requested password authentication.
Declaration
[Java]
TSSHAuthPasswordEvent getOnAuthPassword();
void setOnAuthPassword(TSSHAuthPasswordEvent Value);
TSSHAuthPasswordEvent.Callback OnAuthPassword = new TSSHAuthPasswordEvent.Callback() {
public void TSSHAuthPasswordEventCallback(TObject arg0, String arg1, String arg2, TSSHAuthPasswordEventParams arg3) {
//...
}
}
Parameters
- Username - the name of the client being authenticated
- Password - string that the client gives as a password
- Accept - set this parameter to True if the password is correct.
- ForceChangePassword - set this parameter to True if you want the client to change the password
- pcUsername - the name of the client being authenticated
- szUsername - the length of pcUsername.
- pcPassword - string that the client gives as a password
- szPassword - the length of pcPassword.
Description
Provides a password for checking.
Discuss this help topic in SecureBlackbox Forum