Re: Cipher used to create the keys (General questions)
Mike,
I've duplicated the issue with puttygen, and will contact our programmers on this problem.
However, I've also tried connecting to server with KeyManager created keys, and it worked like a charm.
This is the code I used to connect to my server which had the public key implemented:
[code] //km.Generate(WeOnlyDo.Security.Cryptography.SSHKeyTypes.RSAKey);
//km.Save(@ C:file.txt , damir );
//System.IO.File.WriteAllText(@ C:public.txt , km.PublicKeyOpenSSH(WeOnlyDo.Security.Cryptography.SSHKeyTypes.RSAKey));
km.Load(@ C:file.txt , damir );
ssh1.Hostname = linux.weonlydo.com ;
ssh1.Login = weonlydo ;
ssh1.Blocking = true;
ssh1.Authentication = WeOnlyDo.Client.SSH.Authentications.PublicKey;
ssh1.PrivateKey = km.PrivateKey(WeOnlyDo.Security.Cryptography.SSHKeyTypes.RSAKey);
ssh1.Connect();[/code]
Perhaps that would work on your side too?
Regards,
Damba
Complete thread:
- Cipher used to create the keys - mike_mort, 2008-08-01, 13:15
- Re: Cipher used to create the keys - wodDamir, 2008-08-01, 13:28
- Re: Cipher used to create the keys - mike_mort, 2008-08-01, 13:46
- Re: Cipher used to create the keys - wodDamir, 2008-08-01, 15:43
- Re: Cipher used to create the keys - mike_mort, 2008-08-02, 13:17
- Re: Cipher used to create the keys - wodDamir, 2008-08-02, 15:13
- Re: Cipher used to create the keys - mike_mort, 2008-08-02, 13:17
- Re: Cipher used to create the keys - wodDamir, 2008-08-01, 15:43
- Re: Cipher used to create the keys - mike_mort, 2008-08-01, 13:46
- Re: Cipher used to create the keys - wodDamir, 2008-08-01, 13:28