You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This returns the pointer to the user authentication context data stored in the provided wolfSSH session. This is not to be confused with the wolfSSH’s context data used to create the session.
24
24
25
+
## Setting the Keyboard Authentication Prompts Callback Function
The server needs to specify the prompts that are to be given to the client so
31
+
that it can authenticate in Keyboard-Interactive mode. This callback allows the
32
+
server to set the prompts ready to send to the client.
33
+
34
+
Without this set, Keyboard-Interactive mode will be disabled on the server, even
35
+
if attempts are made to explicitly enable it.
36
+
25
37
## Example Echo Server User Authentication
26
38
27
39
The example echo server implements the authentication callback with sample users using passwords and public keys. The example callback, wsUserAuth, is set on the wolfSSH context:
0 commit comments