supported ssh key types - 2048 vs 1024 bit ssh-dss keys #651
-
Hi, I'm importing a number of users from proftpd into sftpgo ; most of them have the public key type ssh-rsa, but there are a significant number using ssh-dss . Although ssh-keygen -l sees the keys as valid, some ssh-dss keys are accepted and others are not . It looks like keys with 2048 bits are failing, but 1024 bits are ok. Is that expected? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, it seems that crypto/ssh only support 1024 bit dss keys https://github.com/golang/crypto/blob/master/ssh/keys.go#L411 I'll try to better investigate the next week. I have limited internet connection now |
Beta Was this translation helpful? Give feedback.
Hi,
it seems that crypto/ssh only support 1024 bit dss keys
https://github.com/golang/crypto/blob/master/ssh/keys.go#L411
I'll try to better investigate the next week. I have limited internet connection now