v2ray-core/common/crypto/auth_test.go

73 lines
1.5 KiB
Go
Raw Normal View History

2016-12-12 16:42:03 +00:00
package crypto_test
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"io"
"testing"
2017-02-06 12:31:36 +00:00
2016-12-12 16:42:03 +00:00
"v2ray.com/core/common/buf"
. "v2ray.com/core/common/crypto"
"v2ray.com/core/testing/assert"
)
func TestAuthenticationReaderWriter(t *testing.T) {
assert := assert.On(t)
key := make([]byte, 16)
rand.Read(key)
block, err := aes.NewCipher(key)
assert.Error(err).IsNil()
aead, err := cipher.NewGCM(block)
assert.Error(err).IsNil()
2017-04-27 11:31:09 +00:00
rawPayload := make([]byte, 8192*10)
2017-04-23 11:30:08 +00:00
rand.Read(rawPayload)
2016-12-12 16:42:03 +00:00
2017-04-27 11:31:09 +00:00
payload := buf.NewLocal(8192 * 10)
2017-04-23 11:30:08 +00:00
payload.Append(rawPayload)
2016-12-12 20:49:04 +00:00
2017-04-27 11:31:09 +00:00
cache := buf.NewLocal(160 * 1024)
2016-12-12 20:49:04 +00:00
iv := make([]byte, 12)
rand.Read(iv)
writer := NewAuthenticationWriter(&AEADAuthenticator{
AEAD: aead,
NonceGenerator: &StaticBytesGenerator{
Content: iv,
},
AdditionalDataGenerator: &NoOpBytesGenerator{},
2017-04-23 11:30:08 +00:00
}, PlainChunkSizeParser{}, cache)
2017-02-06 13:06:41 +00:00
2017-04-23 11:30:08 +00:00
assert.Error(writer.Write(buf.NewMultiBufferValue(payload))).IsNil()
2017-04-27 11:31:09 +00:00
assert.Int(cache.Len()).Equals(83360)
2017-04-23 11:30:08 +00:00
assert.Error(writer.Write(buf.NewMultiBuffer())).IsNil()
2016-12-12 20:49:04 +00:00
assert.Error(err).IsNil()
2017-02-06 12:31:36 +00:00
2016-12-12 20:49:04 +00:00
reader := NewAuthenticationReader(&AEADAuthenticator{
AEAD: aead,
NonceGenerator: &StaticBytesGenerator{
Content: iv,
},
AdditionalDataGenerator: &NoOpBytesGenerator{},
2017-04-23 11:30:08 +00:00
}, PlainChunkSizeParser{}, cache)
2016-12-12 20:49:04 +00:00
2017-04-27 11:31:09 +00:00
mb := buf.NewMultiBuffer()
for mb.Len() < len(rawPayload) {
mb2, err := reader.Read()
assert.Error(err).IsNil()
mb.AppendMulti(mb2)
}
2017-02-06 13:06:41 +00:00
2017-04-27 11:31:09 +00:00
mbContent := make([]byte, 8192*10)
2017-04-23 11:30:08 +00:00
mb.Read(mbContent)
assert.Bytes(mbContent).Equals(rawPayload)
2016-12-12 20:49:04 +00:00
2017-04-23 11:30:08 +00:00
_, err = reader.Read()
2016-12-12 20:49:04 +00:00
assert.Error(err).Equals(io.EOF)
}