I am looking for a micro ssh server/client implementation. This implementation would have to be small enough to run on microprocessors. e.g. systems with <512KB memory and ~20Mhz 8bit processors - like a Rabbit or a PIC. I have looked around but have not found anything suitable. Does anyone have a recommendataion? Thanks in advance. Thomas DuBuisson
On Thu, 04 Dec 2003 10:47:55 -0800, Thomas DuBuisson muttered:> I am looking for a micro ssh server/client implementation. This > implementation would have to be small enough to run on microprocessors. > e.g. systems with <512KB memory and ~20Mhz 8bit processors - like a Rabbit > or a PIC.I don't think SSH's runtime data (let alone executables) will fit into 512 KB, and the encryption/authentication routines would be deathly slow at 20Mhz with 8-bit registers. I'm afraid you'll have to ditch SSH or use a higher-end architecture. -- Andrew Farmer andfarm at thibs.menloschool.org -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20031204/844a64e8/attachment.bin
On Thu, Dec 04, 2003 at 10:47:55AM -0800, Thomas DuBuisson wrote:> I am looking for a micro ssh server/client implementation. This > implementation would have to be small enough to run on microprocessors. > e.g. systems with <512KB memory and ~20Mhz 8bit processors - like a > Rabbit or a PIC.You'll need lots of CPU time and/or a crypto helper.> I have looked around but have not found anything suitable. Does anyone > have a recommendataion?You could check out TGssh for PalmOS, written in C, which is a port of a very early SSLeay version along with OpenSSH 1.something. Best of luck. Please open source and tell us (or me) when done. :) //Peter