From: Bart M. <ba...@dr...> - 2009-10-30 07:52:17
|
Hi, I have a little spare time around christmas, and I'm thinking about redoing some parts of SSHKeychain, with your help. I'd like to establish a new set of features for the project. I think it would be best to focus on working together with mac's ssh-agent support, adding some security features (like clean agent on sleep, screensaver, etc.), and further improving tunnel support. Any thoughts? Regards, Bart -- Bart Matthaei Ambrero Software B.V. http://www.ambrero.nl/ T: +31 (0)72 5626331 (direct) T: +31 (0)72 5626500 F: +31 (0)72 5626355 |
From: Dustin J. M. <dustin@v.igoro.us> - 2009-10-30 14:19:24
|
On Fri, Oct 30, 2009 at 2:52 AM, Bart Matthaei <ba...@dr...> wrote: > I'd like to establish a new set of features for the project. I think > it would be best to focus on working together with mac's > ssh-agent support, adding some security features (like clean agent on > sleep, screensaver, etc.), and further improving > tunnel support. My two cents are that I, and I expect a lot of other folks, do not need the tunnel support. I just use SSHKeychain to authenticate my regular old SSH logins. So tunnel stuff is great, but hopefully it can be prevented from getting in my way :) Also, I have Mac OS 10.4, and I don't have much experience with Objective C, but I'd like to help out. If you can toss some "easy" tasks my way, that'd be great. Dustin -- Open Source Storage Engineer http://www.zmanda.com |
From: Kevin B. <ke...@sb...> - 2009-10-30 20:09:23
Attachments:
smime.p7s
|
Heh, I'm the opposite. I don't need SSHKeychain to manage my keys, I use it exclusively for the tunnel support. -Kevin Ballard On Oct 30, 2009, at 7:19 AM, Dustin J. Mitchell wrote: > On Fri, Oct 30, 2009 at 2:52 AM, Bart Matthaei <ba...@dr...> > wrote: >> I'd like to establish a new set of features for the project. I think >> it would be best to focus on working together with mac's >> ssh-agent support, adding some security features (like clean agent on >> sleep, screensaver, etc.), and further improving >> tunnel support. > > My two cents are that I, and I expect a lot of other folks, do not > need the tunnel support. I just use SSHKeychain to authenticate my > regular old SSH logins. So tunnel stuff is great, but hopefully it > can be prevented from getting in my way :) > > Also, I have Mac OS 10.4, and I don't have much experience with > Objective C, but I'd like to help out. If you can toss some "easy" > tasks my way, that'd be great. > > Dustin > > -- > Open Source Storage Engineer > http://www.zmanda.com > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Sshkeychain-developers mailing list > Ssh...@li... > https://lists.sourceforge.net/lists/listinfo/sshkeychain-developers > -- Kevin Ballard http://kevin.sb.org ke...@sb... http://www.tildesoft.com |
From: Tim C. <ti...@ch...> - 2009-11-01 23:43:56
|
On 30 Oct 2009, at 2:19 pm, Dustin J. Mitchell wrote: > On Fri, Oct 30, 2009 at 2:52 AM, Bart Matthaei <ba...@dr...> > wrote: >> I'd like to establish a new set of features for the project. I think >> it would be best to focus on working together with mac's >> ssh-agent support, adding some security features (like clean agent on >> sleep, screensaver, etc.), and further improving >> tunnel support. > > My two cents are that I, and I expect a lot of other folks, do not > need the tunnel support. I just use SSHKeychain to authenticate my > regular old SSH logins. So tunnel stuff is great, but hopefully it > can be prevented from getting in my way :) I (and many of my users) do use the tunnel support. > Also, I have Mac OS 10.4, and I don't have much experience with > Objective C, but I'd like to help out. If you can toss some "easy" > tasks my way, that'd be great. Objective C is pretty easy and fast to pick up. It's a much simpler object-orientation of C than C++ is. The syntax looks a bit weird to start with - it sort of looks like the bastard offspring of C, SmallTalk and Tcl - but I actually quite like it. Tim -- The Wellcome Trust Sanger Institute is operated by Genome Research Limited, a charity registered in England with number 1021457 and a company registered in England with number 2742969, whose registered office is 215 Euston Road, London, NW1 2BE. |
From: Dustin J. M. <dustin@v.igoro.us> - 2009-11-01 23:26:23
|
On Sun, Nov 1, 2009 at 6:19 PM, Tim Cutts <ti...@ch...> wrote: > Objective C is pretty easy and fast to pick up. It's a much simpler > object-orientation of C than C++ is. The syntax looks a bit weird to start > with - it sort of looks like the bastard offspring of C, SmallTalk and Tcl - > but I actually quite like it. I've read a book or two, and looked over a good bit of the SSHKeyChain code, and I'm sure I could pick it up the language pretty quickly. It's probably the various NSFoo classes that would take me longer to get used to. Dustin -- Open Source Storage Engineer http://www.zmanda.com |
From: Andre-John M. <and...@gm...> - 2009-11-02 00:32:49
|
Given the two divergent needs, would it make sense to separate the functionality into two separate, but complimentary, applications? The idea would be to allow both applications to develop the strengths, without getting held back the other. One application suite that might be worth looking at for ideas is "Putty", on the MS-Windows side, with its pageant.exe and puttygen.exe tools. André-John On 1-Nov-2009, at 18:19, Tim Cutts wrote: > > On 30 Oct 2009, at 2:19 pm, Dustin J. Mitchell wrote: > >> On Fri, Oct 30, 2009 at 2:52 AM, Bart Matthaei <ba...@dr...> >> wrote: >>> I'd like to establish a new set of features for the project. I think >>> it would be best to focus on working together with mac's >>> ssh-agent support, adding some security features (like clean agent >>> on >>> sleep, screensaver, etc.), and further improving >>> tunnel support. >> >> My two cents are that I, and I expect a lot of other folks, do not >> need the tunnel support. I just use SSHKeychain to authenticate my >> regular old SSH logins. So tunnel stuff is great, but hopefully it >> can be prevented from getting in my way :) > > I (and many of my users) do use the tunnel support. > >> Also, I have Mac OS 10.4, and I don't have much experience with >> Objective C, but I'd like to help out. If you can toss some "easy" >> tasks my way, that'd be great. > > Objective C is pretty easy and fast to pick up. It's a much simpler > object-orientation of C than C++ is. The syntax looks a bit weird to > start with - it sort of looks like the bastard offspring of C, > SmallTalk and Tcl - but I actually quite like it. > > Tim > > > -- > The Wellcome Trust Sanger Institute is operated by Genome Research > Limited, a charity registered in England with number 1021457 and a > company registered in England with number 2742969, whose registered > office is 215 Euston Road, London, NW1 2BE. > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Sshkeychain-developers mailing list > Ssh...@li... > https://lists.sourceforge.net/lists/listinfo/sshkeychain-developers |
From: Tim C. <ti...@ch...> - 2009-11-02 09:15:22
|
On 2 Nov 2009, at 12:32 am, Andre-John Mas wrote: > Given the two divergent needs, would it make sense to separate the > functionality > into two separate, but complimentary, applications? The idea would > be to allow > both applications to develop the strengths, without getting held > back the other. > > One application suite that might be worth looking at for ideas is > "Putty", on > the MS-Windows side, with its pageant.exe and puttygen.exe tools. pageant doesn't really do anything that ssh-agent doesn't do already. (Don't get me wrong, PuTTY is a fine suite of apps for Windows - and I know Simon Tatham, who wrote it, personally) Personally my model for SSHKeychain use is that I use it: 1) To store passphrases in the Keychain, and manage ssh-agent for me. 2) To start my SSH tunnels (I have three up continuously), although I don't use the GUI to configure forwarded ports and so on, I just configure that stuff in my .ssh/config Now, I realise that (1) can to some extent be done by Mac OS X itself (although I've never actually bothered to use the Mac Way of doing it), but (2) is very useful to me. I don't need to forward any privileged ports, so I don't need a proper installer for SSHKeychain... Tim -- The Wellcome Trust Sanger Institute is operated by Genome Research Limited, a charity registered in England with number 1021457 and a company registered in England with number 2742969, whose registered office is 215 Euston Road, London, NW1 2BE. |