Beginning work on UAPI and routing table

This commit is contained in:
Mathias Hall-Andersen
2017-05-30 22:36:49 +02:00
parent 6bd0b2fbe2
commit 1eebdf88a3
8 changed files with 529 additions and 0 deletions

51
src/noise.go Normal file
View File

@@ -0,0 +1,51 @@
package main
import (
"encoding/hex"
"errors"
)
const (
NoisePublicKeySize = 32
NoisePrivateKeySize = 32
NoiseSymmetricKeySize = 32
)
type (
NoisePublicKey [NoisePublicKeySize]byte
NoisePrivateKey [NoisePrivateKeySize]byte
NoiseSymmetricKey [NoiseSymmetricKeySize]byte
NoiseNonce uint64 // padded to 12-bytes
)
func (key *NoisePrivateKey) FromHex(s string) error {
slice, err := hex.DecodeString(s)
if err != nil {
return err
}
if len(slice) != NoisePrivateKeySize {
return errors.New("Invalid length of hex string for curve25519 point")
}
copy(key[:], slice)
return nil
}
func (key *NoisePrivateKey) ToHex() string {
return hex.EncodeToString(key[:])
}
func (key *NoisePublicKey) FromHex(s string) error {
slice, err := hex.DecodeString(s)
if err != nil {
return err
}
if len(slice) != NoisePublicKeySize {
return errors.New("Invalid length of hex string for curve25519 scalar")
}
copy(key[:], slice)
return nil
}
func (key *NoisePublicKey) ToHex() string {
return hex.EncodeToString(key[:])
}