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

« back to all changes in this revision

Viewing changes to src/golang.org/x/crypto/ssh/kex.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:
8
8
        "crypto"
9
9
        "crypto/ecdsa"
10
10
        "crypto/elliptic"
 
11
        "crypto/rand"
11
12
        "crypto/subtle"
12
 
        "crypto/rand"
13
13
        "errors"
14
14
        "io"
15
15
        "math/big"
46
46
        Hash crypto.Hash
47
47
 
48
48
        // The session ID, which is the first H computed. This is used
49
 
        // to signal data inside transport.
 
49
        // to derive key material inside the transport.
50
50
        SessionID []byte
51
51
}
52
52