Has anyone built an SSH server in java before?
The crazy weirdos who develop commercial products all appear to charge a starting price of around $1000 - $4000 for a single license to use their sshd, which is ahem beyond ridiculous for what is a fairly straightforward protocol (given that Sun gives away a completely free encryption layer!).
Although I (used to) know the algorithms and even the mathematical explanations of half a dozen core encryption algorithms, Iāve never implemented one before, and certainly never tried doing SSH.
But it looks as though thatās our only option - use JSSE to make our own sshd implementation from scratch because no-one else on the planet has done this in java and is distributing it for less than $XXXX :(.
Maybe itās easy (with JSSE), or maybe itās really really hard. Any advice? (or evenā¦any alternatives? the openssh.org site is entirely useless, BTW)