]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/node.go
NNCP is expanded to "Node to Node copy"
[nncp.git] / src / cypherpunks.ru / nncp / node.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2017 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package nncp
20
21 import (
22         "crypto/rand"
23         "errors"
24
25         "github.com/flynn/noise"
26         "golang.org/x/crypto/blake2b"
27         "golang.org/x/crypto/ed25519"
28         "golang.org/x/crypto/nacl/box"
29 )
30
31 type NodeId [blake2b.Size256]byte
32
33 func (id NodeId) String() string {
34         return ToBase32(id[:])
35 }
36
37 type Node struct {
38         Name     string
39         Id       *NodeId
40         ExchPub  *[32]byte
41         SignPub  ed25519.PublicKey
42         NoisePub *[32]byte
43         Incoming *string
44         Freq     *string
45         Via      []*NodeId
46         Addrs    map[string]string
47 }
48
49 type NodeOur struct {
50         Id       *NodeId
51         ExchPub  *[32]byte
52         ExchPrv  *[32]byte
53         SignPub  ed25519.PublicKey
54         SignPrv  ed25519.PrivateKey
55         NoisePub *[32]byte
56         NoisePrv *[32]byte
57 }
58
59 func NewNodeGenerate() (*NodeOur, error) {
60         exchPub, exchPrv, err := box.GenerateKey(rand.Reader)
61         if err != nil {
62                 return nil, err
63         }
64         signPub, signPrv, err := ed25519.GenerateKey(rand.Reader)
65         if err != nil {
66                 return nil, err
67         }
68         noiseKey := noise.DH25519.GenerateKeypair(rand.Reader)
69         noisePub := new([32]byte)
70         noisePrv := new([32]byte)
71         copy(noisePrv[:], noiseKey.Private)
72         copy(noisePub[:], noiseKey.Public)
73
74         id := NodeId(blake2b.Sum256([]byte(signPub)))
75         node := NodeOur{
76                 Id:       &id,
77                 ExchPub:  exchPub,
78                 ExchPrv:  exchPrv,
79                 SignPub:  signPub,
80                 SignPrv:  signPrv,
81                 NoisePub: noisePub,
82                 NoisePrv: noisePrv,
83         }
84         return &node, nil
85 }
86
87 func (nodeOur *NodeOur) Their() *Node {
88         return &Node{
89                 Name:    "self",
90                 Id:      nodeOur.Id,
91                 ExchPub: nodeOur.ExchPub,
92                 SignPub: nodeOur.SignPub,
93         }
94 }
95
96 func NodeIdFromString(raw string) (*NodeId, error) {
97         decoded, err := FromBase32(raw)
98         if err != nil {
99                 return nil, err
100         }
101         if len(decoded) != blake2b.Size256 {
102                 return nil, errors.New("Invalid node id size")
103         }
104         buf := new([blake2b.Size256]byte)
105         copy(buf[:], decoded)
106         nodeId := NodeId(*buf)
107         return &nodeId, nil
108 }