Home | History | Annotate | Download | only in ssh2

Lines Matching defs:authenticated

90 	private boolean authenticated = false;
167 * @return whether the connection is now authenticated.
180 if (authenticated)
181 throw new IllegalStateException("Connection is already authenticated!");
195 authenticated = am.authenticatePublicKey(user, pem.toCharArray(), password, getOrCreateSecureRND());
197 return authenticated;
209 * @return whether the connection is now authenticated.
249 * @return whether the connection is now authenticated.
261 if (authenticated)
262 throw new IllegalStateException("Connection is already authenticated!");
273 authenticated = am.authenticateInteractive(user, submethods, cb);
275 return authenticated;
299 * @return if the connection is now authenticated.
307 if (authenticated)
308 throw new IllegalStateException("Connection is already authenticated!");
322 authenticated = am.authenticatePassword(user, password);
324 return authenticated;
350 * @return if the connection is now authenticated.
358 if (authenticated)
359 throw new IllegalStateException("Connection is already authenticated!");
373 authenticated = am.authenticateNone(user);
375 return authenticated;
417 * @return whether the connection is now authenticated.
426 if (authenticated)
427 throw new IllegalStateException("Connection is already authenticated!");
441 authenticated = am.authenticatePublicKey(user, pemPrivateKey, password, getOrCreateSecureRND());
443 return authenticated;
467 * @return whether the connection is now authenticated.
543 authenticated = false;
790 if (!authenticated)
791 throw new IllegalStateException("Cannot forward ports, connection is not authenticated.");
817 if (!authenticated)
818 throw new IllegalStateException("Cannot forward ports, connection is not authenticated.");
840 if (!authenticated)
841 throw new IllegalStateException("Cannot forward, connection is not authenticated.");
863 if (!authenticated)
864 throw new IllegalStateException("Cannot create SCP client, connection is not authenticated.");
959 if (authenticated)
960 throw new IllegalStateException("Connection is already authenticated!");
980 return authenticated;
1053 if (!authenticated)
1054 throw new IllegalStateException("Cannot open session, connection is not authenticated.");
1322 if (!authenticated)
1323 throw new IllegalStateException("The connection is not authenticated.");
1346 if (!authenticated)
1347 throw new IllegalStateException("The connection is not authenticated.");