1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00
v2fly/common/crypto/auth_test.go

73 lines
1.5 KiB
Go
Raw Normal View History

2016-12-12 11:42:03 -05:00
package crypto_test
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"io"
"testing"
2017-02-06 07:31:36 -05:00
2016-12-12 11:42:03 -05: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 07:31:09 -04:00
rawPayload := make([]byte, 8192*10)
2017-04-23 07:30:08 -04:00
rand.Read(rawPayload)
2016-12-12 11:42:03 -05:00
2017-04-27 07:31:09 -04:00
payload := buf.NewLocal(8192 * 10)
2017-04-23 07:30:08 -04:00
payload.Append(rawPayload)
2016-12-12 15:49:04 -05:00
2017-04-27 07:31:09 -04:00
cache := buf.NewLocal(160 * 1024)
2016-12-12 15:49:04 -05:00
iv := make([]byte, 12)
rand.Read(iv)
writer := NewAuthenticationWriter(&AEADAuthenticator{
AEAD: aead,
NonceGenerator: &StaticBytesGenerator{
Content: iv,
},
AdditionalDataGenerator: &NoOpBytesGenerator{},
2017-04-23 07:30:08 -04:00
}, PlainChunkSizeParser{}, cache)
2017-02-06 08:06:41 -05:00
2017-04-23 07:30:08 -04:00
assert.Error(writer.Write(buf.NewMultiBufferValue(payload))).IsNil()
2017-04-27 07:31:09 -04:00
assert.Int(cache.Len()).Equals(83360)
2017-04-23 07:30:08 -04:00
assert.Error(writer.Write(buf.NewMultiBuffer())).IsNil()
2016-12-12 15:49:04 -05:00
assert.Error(err).IsNil()
2017-02-06 07:31:36 -05:00
2016-12-12 15:49:04 -05:00
reader := NewAuthenticationReader(&AEADAuthenticator{
AEAD: aead,
NonceGenerator: &StaticBytesGenerator{
Content: iv,
},
AdditionalDataGenerator: &NoOpBytesGenerator{},
2017-04-23 07:30:08 -04:00
}, PlainChunkSizeParser{}, cache)
2016-12-12 15:49:04 -05:00
2017-04-27 07:31:09 -04:00
mb := buf.NewMultiBuffer()
for mb.Len() < len(rawPayload) {
mb2, err := reader.Read()
assert.Error(err).IsNil()
mb.AppendMulti(mb2)
}
2017-02-06 08:06:41 -05:00
2017-04-27 07:31:09 -04:00
mbContent := make([]byte, 8192*10)
2017-04-23 07:30:08 -04:00
mb.Read(mbContent)
assert.Bytes(mbContent).Equals(rawPayload)
2016-12-12 15:49:04 -05:00
2017-04-23 07:30:08 -04:00
_, err = reader.Read()
2016-12-12 15:49:04 -05:00
assert.Error(err).Equals(io.EOF)
}