forked from kryptco/kr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpair_test.go
76 lines (68 loc) · 1.38 KB
/
pair_test.go
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
package kr
import (
"bytes"
"testing"
)
func TestGenWrapEncDec(t *testing.T) {
var workstationName = "test.workstation.name"
ps, err := GeneratePairingSecret(&workstationName)
if err != nil {
t.Fatal(err)
}
if ps.WorkstationName != "test.workstation.name" {
t.Fatal("WorkstationName is wrong")
}
ps, err = GeneratePairingSecret(nil)
if err != nil {
t.Fatal(err)
}
if ps.WorkstationName != MachineName() {
t.Fatal("WorkstationName is wrong")
}
sessionKey, err := RandNBytes(32)
if err != nil {
t.Fatal(err)
}
encryptedKey, err := WrapKey(sessionKey, ps.WorkstationPublicKey)
if err != nil {
t.Fatal(err)
}
remaining, didUnwrap, err := ps.UnwrapKeyIfPresent(encryptedKey)
if err != nil {
t.Fatal(err)
}
if remaining != nil {
t.Fatal()
}
if !didUnwrap {
t.Fatal()
}
if !bytes.Equal(sessionKey, *ps.EnclavePublicKey) {
t.Fatal("SymmetricSecretKey wrong")
}
msg, err := RandNBytes(129)
if err != nil {
t.Fatal(err)
}
ctxt, err := ps.EncryptMessage(msg)
if err != nil {
t.Fatal(err)
}
remainingCtxt, didUnwrap, err := ps.UnwrapKeyIfPresent(ctxt)
if remainingCtxt == nil {
t.Fatal("should have remaining ciphertext")
}
if didUnwrap {
t.Fatal("was not wrapped key")
}
if err != nil {
t.Fatal(err)
}
ptxt, err := ps.DecryptMessage(*remainingCtxt)
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(*ptxt, msg) {
t.Fatal("decrypt failed")
}
}