I would like to choose a good 'SSH Server' library in Java for my project.
I know that there are bunch of libraries available out there like,
- Apache-Mina
- SSHJ
- JSch (some improved versions too)
- Ganymed
AFAIK, apache mina alone helps us in creating the server part, whereas others provide us only the ssh client.
My question is, I would like to create a full-fledged server part which would authenticate, accept ssh session etc., in my project. Please provide your suggestions on choosing the right library.
Note: I presume this question could have been asked earlier, but still I would like to know the best current/updated libraries, and moreover specific to the server part.