forked from xtaci/kcp-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrypt_test.go
More file actions
461 lines (394 loc) · 9.2 KB
/
crypt_test.go
File metadata and controls
461 lines (394 loc) · 9.2 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
// The MIT License (MIT)
//
// Copyright (c) 2015 xtaci
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package kcp
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/binary"
"hash/crc32"
"io"
"testing"
"golang.org/x/crypto/chacha20poly1305"
)
func TestSM4(t *testing.T) {
bc, err := NewSM4BlockCrypt(pass[:16])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestAES(t *testing.T) {
bc, err := NewAESBlockCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestTEA(t *testing.T) {
bc, err := NewTEABlockCrypt(pass[:16])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestXOR(t *testing.T) {
bc, err := NewSimpleXORBlockCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestBlowfish(t *testing.T) {
bc, err := NewBlowfishBlockCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestNone(t *testing.T) {
bc, err := NewNoneBlockCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestCast5(t *testing.T) {
bc, err := NewCast5BlockCrypt(pass[:16])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func Test3DES(t *testing.T) {
bc, err := NewTripleDESBlockCrypt(pass[:24])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestTwofish(t *testing.T) {
bc, err := NewTwofishBlockCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestXTEA(t *testing.T) {
bc, err := NewXTEABlockCrypt(pass[:16])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func TestSalsa20(t *testing.T) {
bc, err := NewSalsa20BlockCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
cryptTest(t, bc)
}
func cryptTest(t *testing.T, bc BlockCrypt) {
data := make([]byte, mtuLimit)
io.ReadFull(rand.Reader, data)
dec := make([]byte, mtuLimit)
enc := make([]byte, mtuLimit)
bc.Encrypt(enc, data)
bc.Decrypt(dec, enc)
if !bytes.Equal(data, dec) {
t.Fail()
}
}
func TestAES256GCM(t *testing.T) {
bc, err := NewAESGCMCrypt(pass[:32])
if err != nil {
t.Fatal(err)
return
}
testAEAD(t, bc)
}
func TestAES128GCM(t *testing.T) {
bc, err := NewAESGCMCrypt(pass[:16])
if err != nil {
t.Fatal(err)
return
}
testAEAD(t, bc)
}
func testAEAD(t *testing.T, bc BlockCrypt) {
aead := bc.(*aeadCrypt)
nonceSize := aead.NonceSize()
size := mtuLimit - cryptHeaderSize - aead.Overhead()
data := make([]byte, size)
io.ReadFull(rand.Reader, data)
// if the size of packet is cannot accommodate the AEAD overhead
// Open and Seal will allocate a new slice internally, we need to
// ensure that it does not happen for our MTU sized packets.
packet := make([]byte, mtuLimit)
// Seal
dst := packet[:nonceSize]
nonce := packet[:nonceSize]
fillRand(nonce)
sealedPacket := aead.Seal(dst, nonce, data, nil)
if &sealedPacket[0] != &packet[0] {
t.Fatal("Seal created a new slice")
return
}
// Open
dst = sealedPacket[:nonceSize]
nonce = sealedPacket[:nonceSize]
ciphertext := sealedPacket[nonceSize:]
decrypted, err := aead.Open(dst, nonce, ciphertext, nil)
if &decrypted[0] != &sealedPacket[0] {
t.Fatal("Open created a new slice")
return
}
if err != nil {
t.Fatal(err)
return
}
if !bytes.Equal(data, decrypted[nonceSize:]) {
t.Fail()
}
}
func BenchmarkSM4(b *testing.B) {
bc, err := NewSM4BlockCrypt(pass[:16])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkAES128(b *testing.B) {
bc, err := NewAESBlockCrypt(pass[:16])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkAES192(b *testing.B) {
bc, err := NewAESBlockCrypt(pass[:24])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkAES256(b *testing.B) {
bc, err := NewAESBlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkTEA(b *testing.B) {
bc, err := NewTEABlockCrypt(pass[:16])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkXOR(b *testing.B) {
bc, err := NewSimpleXORBlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkBlowfish(b *testing.B) {
bc, err := NewBlowfishBlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkNone(b *testing.B) {
bc, err := NewNoneBlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkCast5(b *testing.B) {
bc, err := NewCast5BlockCrypt(pass[:16])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func Benchmark3DES(b *testing.B) {
bc, err := NewTripleDESBlockCrypt(pass[:24])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkTwofish(b *testing.B) {
bc, err := NewTwofishBlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
}
benchCrypt(b, bc)
}
func BenchmarkXTEA(b *testing.B) {
bc, err := NewXTEABlockCrypt(pass[:16])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func BenchmarkSalsa20(b *testing.B) {
bc, err := NewSalsa20BlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
return
}
benchCrypt(b, bc)
}
func benchCrypt(b *testing.B, bc BlockCrypt) {
data := make([]byte, mtuLimit)
io.ReadFull(rand.Reader, data)
dec := make([]byte, mtuLimit)
enc := make([]byte, mtuLimit)
b.ReportAllocs()
b.SetBytes(int64(len(enc) * 2))
for b.Loop() {
bc.Encrypt(enc, data)
bc.Decrypt(dec, enc)
}
}
func BenchmarkCRC32(b *testing.B) {
content := make([]byte, 1024)
b.SetBytes(int64(len(content)))
for b.Loop() {
crc32.ChecksumIEEE(content)
}
}
func BenchmarkCFB_AES_128_CRC32(b *testing.B) {
bc, err := NewAESBlockCrypt(pass[:16])
if err != nil {
b.Fatal(err)
return
}
data := make([]byte, 1400, mtuLimit)
b.SetBytes(1400)
for b.Loop() {
checksum := crc32.ChecksumIEEE(data[cryptHeaderSize:])
binary.LittleEndian.PutUint32(data[nonceSize:cryptHeaderSize], checksum)
bc.Encrypt(data, data)
}
}
func BenchmarkAEAD_AES_128_GCM(b *testing.B) {
block, err := aes.NewCipher(pass[:16])
if err != nil {
panic(err)
}
aead, err := cipher.NewGCM(block)
if err != nil {
panic(err)
}
data := make([]byte, 1400, mtuLimit)
b.SetBytes(1400)
nonce := data[:aead.NonceSize()]
plaintext := data[aead.NonceSize():]
for b.Loop() {
aead.Seal(plaintext[:0], nonce, plaintext, nil)
}
}
func BenchmarkCFB_Salsa20_CRC32(b *testing.B) {
bc, err := NewSalsa20BlockCrypt(pass[:32])
if err != nil {
b.Fatal(err)
return
}
data := make([]byte, 1400, mtuLimit)
b.SetBytes(1400)
for b.Loop() {
checksum := crc32.ChecksumIEEE(data[cryptHeaderSize:])
binary.LittleEndian.PutUint32(data[nonceSize:cryptHeaderSize], checksum)
bc.Encrypt(data, data)
}
}
func BenchmarkAEAD_Chacha20_Poly1035(b *testing.B) {
aead, err := chacha20poly1305.New(pass[:32])
if err != nil {
panic(err)
}
data := make([]byte, 1400, mtuLimit)
b.SetBytes(1400)
nonce := data[:aead.NonceSize()]
plaintext := data[aead.NonceSize():]
for b.Loop() {
aead.Seal(plaintext[:0], nonce, plaintext, nil)
}
}
func TestCryptErrors(t *testing.T) {
invalidKey := []byte("invalid")
if _, err := NewSM4BlockCrypt(invalidKey); err == nil {
t.Error("NewSM4BlockCrypt should fail with invalid key")
}
if _, err := NewTwofishBlockCrypt(invalidKey); err == nil {
t.Error("NewTwofishBlockCrypt should fail with invalid key")
}
if _, err := NewTripleDESBlockCrypt(invalidKey); err == nil {
t.Error("NewTripleDESBlockCrypt should fail with invalid key")
}
if _, err := NewCast5BlockCrypt(invalidKey); err == nil {
t.Error("NewCast5BlockCrypt should fail with invalid key")
}
// Blowfish supports variable key length, so "invalid" (7 bytes) might be valid.
// Blowfish key size: 1-56 bytes. So 7 bytes is valid.
// Let's try empty key or very long key.
if _, err := NewBlowfishBlockCrypt(nil); err == nil {
t.Error("NewBlowfishBlockCrypt should fail with nil key")
}
if _, err := NewAESBlockCrypt(invalidKey); err == nil {
t.Error("NewAESBlockCrypt should fail with invalid key")
}
if _, err := NewTEABlockCrypt(invalidKey); err == nil {
t.Error("NewTEABlockCrypt should fail with invalid key")
}
if _, err := NewXTEABlockCrypt(invalidKey); err == nil {
t.Error("NewXTEABlockCrypt should fail with invalid key")
}
}