~juju-qa/ubuntu/xenial/juju/2.0-rc2

« back to all changes in this revision

Viewing changes to src/golang.org/x/crypto/ssh/common.go

  • Committer: Nicholas Skaggs
  • Date: 2016-09-30 14:39:30 UTC
  • mfrom: (1.8.1)
  • Revision ID: nicholas.skaggs@canonical.com-20160930143930-vwwhrefh6ftckccy
import upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
// of authenticating servers) in preference order.
45
45
var supportedHostKeyAlgos = []string{
46
46
        CertAlgoRSAv01, CertAlgoDSAv01, CertAlgoECDSA256v01,
47
 
        CertAlgoECDSA384v01, CertAlgoECDSA521v01,
 
47
        CertAlgoECDSA384v01, CertAlgoECDSA521v01, CertAlgoED25519v01,
48
48
 
49
49
        KeyAlgoECDSA256, KeyAlgoECDSA384, KeyAlgoECDSA521,
50
50
        KeyAlgoRSA, KeyAlgoDSA,
 
51
 
 
52
        KeyAlgoED25519,
51
53
}
52
54
 
53
55
// supportedMACs specifies a default set of MAC algorithms in preference order.