summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2005-09-20 17:35:21 +0000
committerMatt Johnston <matt@ucc.asn.au>2005-09-20 17:35:21 +0000
commit2df50ab063fb07b72771b7fdeb2849f908188e45 (patch)
treea1e75c7c67acfa982b9f0098591d9f3e8c86662d /auth.h
parent751acd62965a11f7480d9127c84030997b536a91 (diff)
downloaddropbear-2df50ab063fb07b72771b7fdeb2849f908188e45.tar.gz
added keyboard-interactive client support
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h18
1 files changed, 13 insertions, 5 deletions
diff --git a/auth.h b/auth.h
index 6d6ebc7..7e83247 100644
--- a/auth.h
+++ b/auth.h
@@ -41,28 +41,36 @@ void svr_auth_pam();
/* Client functions */
void recv_msg_userauth_failure();
void recv_msg_userauth_success();
+void recv_msg_userauth_specific_60();
void recv_msg_userauth_pk_ok();
+void recv_msg_userauth_info_request();
void cli_get_user();
void cli_auth_getmethods();
void cli_auth_try();
void recv_msg_userauth_banner();
void cli_pubkeyfail();
-int cli_auth_password();
+void cli_auth_password();
int cli_auth_pubkey();
+void cli_auth_interactive();
#define MAX_USERNAME_LEN 25 /* arbitrary for the moment */
-#define AUTH_TYPE_PUBKEY 1 << 0
-#define AUTH_TYPE_PASSWORD 1 << 1
+#define AUTH_TYPE_NONE 1
+#define AUTH_TYPE_PUBKEY 1 << 1
+#define AUTH_TYPE_PASSWORD 1 << 2
+#define AUTH_TYPE_INTERACT 1 << 3
-/* auth types, "none" means we should return list of acceptable types */
-#define AUTH_METHOD_NONE "none"
+#define AUTH_METHOD_NONE "none"
#define AUTH_METHOD_NONE_LEN 4
#define AUTH_METHOD_PUBKEY "publickey"
#define AUTH_METHOD_PUBKEY_LEN 9
#define AUTH_METHOD_PASSWORD "password"
#define AUTH_METHOD_PASSWORD_LEN 8
+#define AUTH_METHOD_INTERACT "keyboard-interactive"
+#define AUTH_METHOD_INTERACT_LEN 20
+
+
/* This structure is shared between server and client - it contains
* relatively little extraneous bits when used for the client rather than the