Hello, 

Am I missing something ?

I am trying to use the exchange algorithm called 
"diffie-hellman-group-exchange-sha1" It looks like Go does not support it


>From this link 
<https://github.com/golang/crypto/blob/10c26747e67d76ad4fafe6087c6f4073c3b22942/ssh/kex.go#sourcegraph&def=GoPackage/github.com/golang/crypto/ssh/-/kexAlgoCurve25519SHA256&L26-26>
 , 
it looks like it is only supporting 

const (
        kexAlgoDH1SHA1          = "diffie-hellman-group1-sha1"
        kexAlgoDH14SHA1         = "diffie-hellman-group14-sha1"
        kexAlgoECDH256          = "ecdh-sha2-nistp256"
        kexAlgoECDH384          = "ecdh-sha2-nistp384"
        kexAlgoECDH521          = "ecdh-sha2-nistp521"
        kexAlgoCurve25519SHA256 = "curve25519-sha...@libssh.org"
)


thanks

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to