|
1 |
| -// The identify package handles how peers identify with eachother upon |
| 1 | +// Package identify handles how peers identify with eachother upon |
2 | 2 | // connection to the network
|
3 | 3 | package identify
|
4 | 4 |
|
@@ -31,7 +31,7 @@ var SupportedHashes = "SHA256,SHA512,SHA1"
|
31 | 31 | // ErrUnsupportedKeyType is returned when a private key cast/type switch fails.
|
32 | 32 | var ErrUnsupportedKeyType = errors.New("unsupported key type")
|
33 | 33 |
|
34 |
| -// Perform initial communication with this peer to share node ID's and |
| 34 | +// Performs initial communication with this peer to share node ID's and |
35 | 35 | // initiate communication. (secureIn, secureOut, error)
|
36 | 36 | func Handshake(self, remote *peer.Peer, in, out chan []byte) (chan []byte, chan []byte, error) {
|
37 | 37 | // Generate and send Hello packet.
|
@@ -74,7 +74,7 @@ func Handshake(self, remote *peer.Peer, in, out chan []byte) (chan []byte, chan
|
74 | 74 | return nil, nil, err
|
75 | 75 | }
|
76 | 76 |
|
77 |
| - remote.ID, err = IdFromPubKey(remote.PubKey) |
| 77 | + remote.ID, err = IDFromPubKey(remote.PubKey) |
78 | 78 | if err != nil {
|
79 | 79 | return nil, nil, err
|
80 | 80 | }
|
@@ -239,7 +239,8 @@ func secureOutProxy(out, secureOut chan []byte, hashType string, mIV, mCKey, mMK
|
239 | 239 | }
|
240 | 240 | }
|
241 | 241 |
|
242 |
| -func IdFromPubKey(pk ci.PubKey) (peer.ID, error) { |
| 242 | +// IDFromPubKey returns Nodes ID given its public key |
| 243 | +func IDFromPubKey(pk ci.PubKey) (peer.ID, error) { |
243 | 244 | b, err := pk.Bytes()
|
244 | 245 | if err != nil {
|
245 | 246 | return nil, err
|
|
0 commit comments