Files
codeql/java/ql/test/stubs/ganymed-ssh-2-260/ch/ethz/ssh2/Connection.java
2022-08-13 12:39:15 +01:00

16 lines
337 B
Java
Generated

/*
* Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
* Please refer to the LICENSE.txt for licensing details.
*/
package ch.ethz.ssh2;
import java.io.IOException;
public class Connection
{
public synchronized boolean authenticateWithPassword(String user, String password) throws IOException
{
return true;
}
}