~ubuntu-branches/ubuntu/vivid/dropbear/vivid

« back to all changes in this revision

Viewing changes to options.h

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2011-11-16 12:36:03 UTC
  • mfrom: (1.4.4)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: package-import@ubuntu.com-20111116123603-qkpk0p5e3gegporw
ImportĀ upstreamĀ versionĀ 2011.54

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
/* Authentication Types - at least one required.
159
159
   RFC Draft requires pubkey auth, and recommends password */
160
160
 
161
 
/* Note: PAM auth is quite simple, and only works for PAM modules which just do
 
161
/* Note: PAM auth is quite simple and only works for PAM modules which just do
162
162
 * a simple "Login: " "Password: " (you can edit the strings in svr-authpam.c).
163
 
 * It's useful for systems like OS X where standard password crypts don't work,
164
 
 * but there's an interface via a PAM module - don't bother using it otherwise.
 
163
 * It's useful for systems like OS X where standard password crypts don't work
 
164
 * but there's an interface via a PAM module. It won't work for more complex
 
165
 * PAM challenge/response.
165
166
 * You can't enable both PASSWORD and PAM. */
166
167
 
167
168
#define ENABLE_SVR_PASSWORD_AUTH
175
176
#define ENABLE_SVR_PUBKEY_OPTIONS
176
177
#endif
177
178
 
 
179
/* Define this to allow logging in to accounts that have no password specified.
 
180
 * Public key logins are allowed for blank-password accounts regardless of this
 
181
 * setting.  PAM is not affected by this setting, it uses the normal pam.d
 
182
 * settings ('nullok' option) */
 
183
/* #define ALLOW_BLANK_PASSWORD */
 
184
 
178
185
#define ENABLE_CLI_PASSWORD_AUTH
179
186
#define ENABLE_CLI_PUBKEY_AUTH
180
187
#define ENABLE_CLI_INTERACT_AUTH