aboutsummaryrefslogtreecommitdiffstats
path: root/whisper
diff options
context:
space:
mode:
authorBas van Kervel <basvankervel@gmail.com>2017-06-21 16:32:36 +0800
committerBas van Kervel <basvankervel@gmail.com>2017-06-21 16:32:36 +0800
commit4a1d516d78f61937d850c6622bc26955b5103a23 (patch)
tree43146430e1f427bce080c5a271167e4837e6e47b /whisper
parentb6b0e0019810dd5fad992891c5db051b8603292d (diff)
downloadgo-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.tar
go-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.tar.gz
go-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.tar.bz2
go-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.tar.lz
go-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.tar.xz
go-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.tar.zst
go-tangerine-4a1d516d78f61937d850c6622bc26955b5103a23.zip
whisper: renamed errors
Diffstat (limited to 'whisper')
-rw-r--r--whisper/whisperv5/api.go42
-rw-r--r--whisper/whisperv5/whisper.go2
-rw-r--r--whisper/whisperv5/whisper_test.go6
3 files changed, 25 insertions, 25 deletions
diff --git a/whisper/whisperv5/api.go b/whisper/whisperv5/api.go
index fd25a4206..f3d25f781 100644
--- a/whisper/whisperv5/api.go
+++ b/whisper/whisperv5/api.go
@@ -18,11 +18,11 @@ package whisperv5
import (
"context"
+ "crypto/ecdsa"
"errors"
"fmt"
- "time"
- "crypto/ecdsa"
"sync"
+ "time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
@@ -37,12 +37,12 @@ const (
)
var (
- SymAsymErr = errors.New("specify either a symetric or a asymmetric key")
- InvalidSymmetricKeyErr = errors.New("invalid symmetric key")
- InvalidPublicKeyErr = errors.New("invalid public key")
- InvalidSigningPubKey = errors.New("invalid signing public key")
- TooLowPoWErr = errors.New("message rejected, PoW too low")
- NoTopicsErr = errors.New("missing topic(s)")
+ ErrSymAsym = errors.New("specify either a symetric or a asymmetric key")
+ ErrInvalidSymmetricKey = errors.New("invalid symmetric key")
+ ErrInvalidPublicKey = errors.New("invalid public key")
+ ErrInvalidSigningPubKey = errors.New("invalid signing public key")
+ ErrTooLowPoW = errors.New("message rejected, PoW too low")
+ ErrNoTopics = errors.New("missing topic(s)")
)
// PublicWhisperAPI provides the whisper RPC service that can be
@@ -245,7 +245,7 @@ func (api *PublicWhisperAPI) Post(ctx context.Context, req NewMessage) (bool, er
// user must specify either a symmetric or a asymmetric key
if (symKeyGiven && pubKeyGiven) || (!symKeyGiven && !pubKeyGiven) {
- return false, SymAsymErr
+ return false, ErrSymAsym
}
params := &MessageParams{
@@ -267,13 +267,13 @@ func (api *PublicWhisperAPI) Post(ctx context.Context, req NewMessage) (bool, er
// Set symmetric key that is used to encrypt the message
if symKeyGiven {
if params.Topic == (TopicType{}) { // topics are mandatory with symmetric encryption
- return false, NoTopicsErr
+ return false, ErrNoTopics
}
if params.KeySym, err = api.w.GetSymKey(req.SymKeyID); err != nil {
return false, err
}
if !validateSymmetricKey(params.KeySym) {
- return false, InvalidSymmetricKeyErr
+ return false, ErrInvalidSymmetricKey
}
}
@@ -281,7 +281,7 @@ func (api *PublicWhisperAPI) Post(ctx context.Context, req NewMessage) (bool, er
if pubKeyGiven {
params.Dst = crypto.ToECDSAPub(req.PublicKey)
if !ValidatePublicKey(params.Dst) {
- return false, InvalidPublicKeyErr
+ return false, ErrInvalidPublicKey
}
}
@@ -307,7 +307,7 @@ func (api *PublicWhisperAPI) Post(ctx context.Context, req NewMessage) (bool, er
// ensure that the message PoW meets the node's minimum accepted PoW
if req.PowTarget < api.w.MinPow() {
- return false, TooLowPoWErr
+ return false, ErrTooLowPoW
}
return true, api.w.Send(env)
@@ -346,7 +346,7 @@ func (api *PublicWhisperAPI) Messages(ctx context.Context, crit Criteria) (*rpc.
// user must specify either a symmetric or a asymmetric key
if (symKeyGiven && pubKeyGiven) || (!symKeyGiven && !pubKeyGiven) {
- return nil, SymAsymErr
+ return nil, ErrSymAsym
}
filter := Filter{
@@ -358,7 +358,7 @@ func (api *PublicWhisperAPI) Messages(ctx context.Context, crit Criteria) (*rpc.
if len(crit.Sig) > 0 {
filter.Src = crypto.ToECDSAPub(crit.Sig)
if !ValidatePublicKey(filter.Src) {
- return nil, InvalidSigningPubKey
+ return nil, ErrInvalidSigningPubKey
}
}
@@ -372,14 +372,14 @@ func (api *PublicWhisperAPI) Messages(ctx context.Context, crit Criteria) (*rpc.
// listen for message that are encrypted with the given symmetric key
if symKeyGiven {
if len(filter.Topics) == 0 {
- return nil, NoTopicsErr
+ return nil, ErrNoTopics
}
key, err := api.w.GetSymKey(crit.SymKeyID)
if err != nil {
return nil, err
}
if !validateSymmetricKey(key) {
- return nil, InvalidSymmetricKeyErr
+ return nil, ErrInvalidSymmetricKey
}
filter.KeySym = key
filter.SymKeyHash = crypto.Keccak256Hash(filter.KeySym)
@@ -389,7 +389,7 @@ func (api *PublicWhisperAPI) Messages(ctx context.Context, crit Criteria) (*rpc.
if pubKeyGiven {
filter.KeyAsym, err = api.w.GetPrivateKey(crit.PrivateKeyID)
if err != nil || filter.KeyAsym == nil {
- return nil, InvalidPublicKeyErr
+ return nil, ErrInvalidPublicKey
}
}
@@ -536,13 +536,13 @@ func (api *PublicWhisperAPI) NewMessageFilter(req Criteria) (string, error) {
// user must specify either a symmetric or a asymmetric key
if (symKeyGiven && asymKeyGiven) || (!symKeyGiven && !asymKeyGiven) {
- return "", SymAsymErr
+ return "", ErrSymAsym
}
if len(req.Sig) > 0 {
src = crypto.ToECDSAPub(req.Sig)
if !ValidatePublicKey(src) {
- return "", InvalidSigningPubKey
+ return "", ErrInvalidSigningPubKey
}
}
@@ -551,7 +551,7 @@ func (api *PublicWhisperAPI) NewMessageFilter(req Criteria) (string, error) {
return "", err
}
if !validateSymmetricKey(keySym) {
- return "", InvalidSymmetricKeyErr
+ return "", ErrInvalidSymmetricKey
}
}
diff --git a/whisper/whisperv5/whisper.go b/whisper/whisperv5/whisper.go
index 83a408dfc..1e10b1d76 100644
--- a/whisper/whisperv5/whisper.go
+++ b/whisper/whisperv5/whisper.go
@@ -112,7 +112,7 @@ func New(cfg *Config) *Whisper {
if cfg == nil {
cfg = &DefaultConfig
}
-
+
whisper := &Whisper{
privateKeys: make(map[string]*ecdsa.PrivateKey),
symKeys: make(map[string][]byte),
diff --git a/whisper/whisperv5/whisper_test.go b/whisper/whisperv5/whisper_test.go
index 4c03cb234..145143833 100644
--- a/whisper/whisperv5/whisper_test.go
+++ b/whisper/whisperv5/whisper_test.go
@@ -18,10 +18,10 @@ package whisperv5
import (
"bytes"
+ "crypto/ecdsa"
mrand "math/rand"
"testing"
"time"
- "crypto/ecdsa"
)
func TestWhisperBasic(t *testing.T) {
@@ -120,11 +120,11 @@ func TestWhisperBasic(t *testing.T) {
func TestWhisperAsymmetricKeyImport(t *testing.T) {
var (
- w = New(&DefaultConfig)
+ w = New(&DefaultConfig)
privateKeys []*ecdsa.PrivateKey
)
- for i:=0; i < 50; i++ {
+ for i := 0; i < 50; i++ {
id, err := w.NewKeyPair()
if err != nil {
t.Fatalf("could not generate key: %v", err)