0

I have to develop a minimal ssh client in j2me, and time is not a luxury. It would be helpful if you guys got any links(libraries or documentation) so that i could take off right away.

Farhan
  • 1,596
  • 1
  • 19
  • 33

2 Answers2

2

Can you just use MidpSSH? It's open source, GPL-licensed, and unless you'd want to bundle it with proprietary software, it could be an excellent alternative.

GreyCat
  • 16,622
  • 18
  • 74
  • 112
  • Why don't you want to use MidpSSH sources as a reference? If not, may be you could at least opt to use various SSH implementations in Java? Or you *absolutely* need to implement it by yourself from scratch, using only SSH protocol documentation? – GreyCat Dec 07 '10 at 21:56
  • Well, looks like almost any SSH library for _Java_ (not just for J2ME) will do - for example, take a look at http://stackoverflow.com/questions/995944/ssh-library-for-java - there's a good overview of alternatives. – GreyCat Dec 10 '10 at 09:47
1

There is MidpSSH, a mobile SSH client for MIDP devices. It's GPL licensed, the source code is available at the linked website. The license may not be compatible with your deployment scenario, but it's still a good source to get started.

Oben Sonne
  • 9,893
  • 2
  • 40
  • 61