aboutsummaryrefslogtreecommitdiffstats
path: root/whisper/message_test.go
blob: 18a254e5c936316a704755f6ea489bea8dcfbb0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package whisper

import (
    "bytes"
    "crypto/elliptic"
    "testing"

    "github.com/ethereum/go-ethereum/crypto"
)

// Tests whether a message can be wrapped without any identity or encryption.
func TestMessageSimpleWrap(t *testing.T) {
    payload := []byte("hello world")

    msg := NewMessage(payload)
    if _, err := msg.Wrap(DefaultPoW, Options{}); err != nil {
        t.Fatalf("failed to wrap message: %v", err)
    }
    if msg.Flags&signatureFlag != 0 {
        t.Fatalf("signature flag mismatch: have %d, want %d", msg.Flags&signatureFlag, 0)
    }
    if len(msg.Signature) != 0 {
        t.Fatalf("signature found for simple wrapping: 0x%x", msg.Signature)
    }
    if bytes.Compare(msg.Payload, payload) != 0 {
        t.Fatalf("payload mismatch after wrapping: have 0x%x, want 0x%x", msg.Payload, payload)
    }
}

// Tests whether a message can be signed, and wrapped in plain-text.
func TestMessageCleartextSignRecover(t *testing.T) {
    key, err := crypto.GenerateKey()
    if err != nil {
        t.Fatalf("failed to create crypto key: %v", err)
    }
    payload := []byte("hello world")

    msg := NewMessage(payload)
    if _, err := msg.Wrap(DefaultPoW, Options{
        From: key,
    }); err != nil {
        t.Fatalf("failed to sign message: %v", err)
    }
    if msg.Flags&signatureFlag != signatureFlag {
        t.Fatalf("signature flag mismatch: have %d, want %d", msg.Flags&signatureFlag, signatureFlag)
    }
    if bytes.Compare(msg.Payload, payload) != 0 {
        t.Fatalf("payload mismatch after signing: have 0x%x, want 0x%x", msg.Payload, payload)
    }

    pubKey := msg.Recover()
    if pubKey == nil {
        t.Fatalf("failed to recover public key")
    }
    p1 := elliptic.Marshal(crypto.S256(), key.PublicKey.X, key.PublicKey.Y)
    p2 := elliptic.Marshal(crypto.S256(), pubKey.X, pubKey.Y)
    if !bytes.Equal(p1, p2) {
        t.Fatalf("public key mismatch: have 0x%x, want 0x%x", p2, p1)
    }
}

// Tests whether a message can be encrypted and decrypted using an anonymous
// sender (i.e. no signature).
func TestMessageAnonymousEncryptDecrypt(t *testing.T) {
    key, err := crypto.GenerateKey()
    if err != nil {
        t.Fatalf("failed to create recipient crypto key: %v", err)
    }
    payload := []byte("hello world")

    msg := NewMessage(payload)
    envelope, err := msg.Wrap(DefaultPoW, Options{
        To: &key.PublicKey,
    })
    if err != nil {
        t.Fatalf("failed to encrypt message: %v", err)
    }
    if msg.Flags&signatureFlag != 0 {
        t.Fatalf("signature flag mismatch: have %d, want %d", msg.Flags&signatureFlag, 0)
    }
    if len(msg.Signature) != 0 {
        t.Fatalf("signature found for anonymous message: 0x%x", msg.Signature)
    }

    out, err := envelope.Open(key)
    if err != nil {
        t.Fatalf("failed to open encrypted message: %v", err)
    }
    if !bytes.Equal(out.Payload, payload) {
        t.Error("payload mismatch: have 0x%x, want 0x%x", out.Payload, payload)
    }
}

// Tests whether a message can be properly signed and encrypted.
func TestMessageFullCrypto(t *testing.T) {
    fromKey, err := crypto.GenerateKey()
    if err != nil {
        t.Fatalf("failed to create sender crypto key: %v", err)
    }
    toKey, err := crypto.GenerateKey()
    if err != nil {
        t.Fatalf("failed to create recipient crypto key: %v", err)
    }

    payload := []byte("hello world")
    msg := NewMessage(payload)
    envelope, err := msg.Wrap(DefaultPoW, Options{
        From: fromKey,
        To:   &toKey.PublicKey,
    })
    if err != nil {
        t.Fatalf("failed to encrypt message: %v", err)
    }
    if msg.Flags&signatureFlag != signatureFlag {
        t.Fatalf("signature flag mismatch: have %d, want %d", msg.Flags&signatureFlag, signatureFlag)
    }
    if len(msg.Signature) == 0 {
        t.Fatalf("no signature found for signed message")
    }

    out, err := envelope.Open(toKey)
    if err != nil {
        t.Fatalf("failed to open encrypted message: %v", err)
    }
    if !bytes.Equal(out.Payload, payload) {
        t.Error("payload mismatch: have 0x%x, want 0x%x", out.Payload, payload)
    }

    pubKey := out.Recover()
    if pubKey == nil {
        t.Fatalf("failed to recover public key")
    }
    p1 := elliptic.Marshal(crypto.S256(), fromKey.PublicKey.X, fromKey.PublicKey.Y)
    p2 := elliptic.Marshal(crypto.S256(), pubKey.X, pubKey.Y)
    if !bytes.Equal(p1, p2) {
        t.Fatalf("public key mismatch: have 0x%x, want 0x%x", p2, p1)
    }
}