forked from cmars/macaroon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrypto_test.go
65 lines (53 loc) · 1.57 KB
/
crypto_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
package macaroon
import (
"crypto/rand"
"fmt"
"code.google.com/p/go.crypto/nacl/secretbox"
gc "gopkg.in/check.v1"
)
type cryptoSuite struct{}
var _ = gc.Suite(&cryptoSuite{})
func (*cryptoSuite) TestEncDec(c *gc.C) {
key := []byte("a key")
text := []byte("some text")
b, err := encrypt(key, text, rand.Reader)
c.Assert(err, gc.IsNil)
t, err := decrypt(key, b)
c.Assert(err, gc.IsNil)
c.Assert(string(t), gc.Equals, string(text))
}
func (*cryptoSuite) TestUniqueNonces(c *gc.C) {
nonces := make(map[string]struct{})
for i := 0; i < 100; i++ {
nonce, err := newNonce(rand.Reader)
c.Assert(err, gc.IsNil)
nonces[string(nonce[:])] = struct{}{}
}
c.Assert(nonces, gc.HasLen, 100, gc.Commentf("duplicate nonce detected"))
}
type ErrorReader struct{}
func (*ErrorReader) Read([]byte) (int, error) {
return 0, fmt.Errorf("fail")
}
func (*cryptoSuite) TestBadRandom(c *gc.C) {
_, err := newNonce(&ErrorReader{})
c.Assert(err, gc.ErrorMatches, "^cannot generate random bytes:.*")
_, err = encrypt([]byte("a key"), []byte("some text"), &ErrorReader{})
c.Assert(err, gc.ErrorMatches, "^cannot generate random bytes:.*")
}
func (*cryptoSuite) TestBadCiphertext(c *gc.C) {
buf := randomBytes(nonceLen + secretbox.Overhead)
for i := range buf {
_, err := decrypt([]byte("a key"), buf[0:i])
c.Assert(err, gc.ErrorMatches, "message too short")
}
_, err := decrypt([]byte("a key"), buf)
c.Assert(err, gc.ErrorMatches, "decryption failure")
}
func randomBytes(n int) []byte {
buf := make([]byte, n)
if _, err := rand.Reader.Read(buf); err != nil {
panic(err)
}
return buf
}