Lines Matching full:password

5  * username and password available, and a ticket cache created, but with the
55 /* Load the Kerberos principal and password from a file. */ in main()
59 config.password = krbconf->password; in main()
68 * First test trying to change the password to something that's in main()
74 run_script("data/scripts/password/too-long", &config); in main()
75 run_script("data/scripts/password/too-long-debug", &config); in main()
77 /* Test use_authtok with an excessively long password. */ in main()
80 run_script("data/scripts/password/authtok-too-long", &config); in main()
81 run_script("data/scripts/password/authtok-too-long-debug", &config); in main()
84 * Change the password to something new. This needs to be sufficiently in main()
85 * random that it's unlikely to fall afoul of password strength checking. in main()
92 run_script("data/scripts/password/basic", &config); in main()
93 config.password = newpass; in main()
94 config.newpass = krbconf->password; in main()
95 run_script("data/scripts/password/basic-debug", &config); in main()
97 /* Test prompt_principal with password change. */ in main()
98 config.password = krbconf->password; in main()
100 run_script("data/scripts/password/prompt-principal", &config); in main()
102 /* Change the password back and test expose-account. */ in main()
103 config.password = newpass; in main()
104 config.newpass = krbconf->password; in main()
105 run_script("data/scripts/password/expose", &config); in main()
108 * Test two banner settings by changing the password and then changing it in main()
111 config.password = krbconf->password; in main()
113 run_script("data/scripts/password/banner", &config); in main()
114 config.password = newpass; in main()
115 config.newpass = krbconf->password; in main()
116 run_script("data/scripts/password/no-banner", &config); in main()
119 config.password = krbconf->password; in main()
121 run_script("data/scripts/password/banner-expose", &config); in main()
122 config.password = newpass; in main()
123 config.newpass = krbconf->password; in main()
124 run_script("data/scripts/password/no-banner-expose", &config); in main()
127 config.password = krbconf->password; in main()
130 run_script("data/scripts/password/authtok", &config); in main()
133 config.password = NULL; in main()
134 config.authtok = krbconf->password; in main()
136 run_script("data/scripts/password/authtok-force", &config); in main()
145 config.password = "old-password"; in main()
146 config.newpass = "new-password"; in main()
148 run_script("data/scripts/password/ignore", &config); in main()