2017-05-30 22:36:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
NoisePublicKeySize = 32
|
|
|
|
NoisePrivateKeySize = 32
|
|
|
|
NoiseSymmetricKeySize = 32
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
2017-06-23 13:45:32 +02:00
|
|
|
NoisePublicKey [NoisePublicKeySize]byte
|
|
|
|
NoisePrivateKey [NoisePrivateKeySize]byte
|
|
|
|
NoiseSymmetricKey [NoiseSymmetricKeySize]byte
|
|
|
|
NoiseNonce uint64 // padded to 12-bytes
|
2017-05-30 22:36:49 +02:00
|
|
|
)
|
|
|
|
|
2017-06-01 21:31:30 +02:00
|
|
|
func loadExactHex(dst []byte, src string) error {
|
|
|
|
slice, err := hex.DecodeString(src)
|
2017-05-30 22:36:49 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-06-01 21:31:30 +02:00
|
|
|
if len(slice) != len(dst) {
|
|
|
|
return errors.New("Hex string does not fit the slice")
|
2017-05-30 22:36:49 +02:00
|
|
|
}
|
2017-06-01 21:31:30 +02:00
|
|
|
copy(dst, slice)
|
2017-05-30 22:36:49 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-01 21:31:30 +02:00
|
|
|
func (key *NoisePrivateKey) FromHex(src string) error {
|
|
|
|
return loadExactHex(key[:], src)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (key NoisePrivateKey) ToHex() string {
|
2017-05-30 22:36:49 +02:00
|
|
|
return hex.EncodeToString(key[:])
|
|
|
|
}
|
|
|
|
|
2017-06-01 21:31:30 +02:00
|
|
|
func (key *NoisePublicKey) FromHex(src string) error {
|
|
|
|
return loadExactHex(key[:], src)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (key NoisePublicKey) ToHex() string {
|
|
|
|
return hex.EncodeToString(key[:])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (key *NoiseSymmetricKey) FromHex(src string) error {
|
|
|
|
return loadExactHex(key[:], src)
|
2017-05-30 22:36:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-01 21:31:30 +02:00
|
|
|
func (key NoiseSymmetricKey) ToHex() string {
|
2017-05-30 22:36:49 +02:00
|
|
|
return hex.EncodeToString(key[:])
|
|
|
|
}
|