v2ray-core/common/crypto/auth_test.go

132 lines
2.9 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"
2017-05-02 20:23:07 +00:00
"v2ray.com/core/common/protocol"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
2016-12-12 16:42:03 +00:00
)
func TestAuthenticationReaderWriter(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2016-12-12 16:42:03 +00:00
key := make([]byte, 16)
rand.Read(key)
block, err := aes.NewCipher(key)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-12-12 16:42:03 +00:00
aead, err := cipher.NewGCM(block)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-12-12 16:42:03 +00:00
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-05-02 20:23:07 +00:00
}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)
2017-02-06 13:06:41 +00:00
2017-10-24 14:15:35 +00:00
assert(writer.Write(buf.NewMultiBufferValue(payload)), IsNil)
assert(cache.Len(), Equals, 83360)
assert(writer.Write(buf.NewMultiBuffer()), IsNil)
assert(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-05-02 20:23:07 +00:00
}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)
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()
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2017-04-27 11:31:09 +00:00
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)
2017-10-24 14:15:35 +00:00
assert(mbContent, Equals, rawPayload)
2016-12-12 20:49:04 +00:00
2017-04-23 11:30:08 +00:00
_, err = reader.Read()
2017-10-24 14:15:35 +00:00
assert(err, Equals, io.EOF)
2016-12-12 20:49:04 +00:00
}
2017-05-01 22:28:16 +00:00
func TestAuthenticationReaderWriterPacket(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2017-05-01 22:28:16 +00:00
key := make([]byte, 16)
rand.Read(key)
block, err := aes.NewCipher(key)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2017-05-01 22:28:16 +00:00
aead, err := cipher.NewGCM(block)
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2017-05-01 22:28:16 +00:00
cache := buf.NewLocal(1024)
iv := make([]byte, 12)
rand.Read(iv)
writer := NewAuthenticationWriter(&AEADAuthenticator{
AEAD: aead,
NonceGenerator: &StaticBytesGenerator{
Content: iv,
},
AdditionalDataGenerator: &NoOpBytesGenerator{},
2017-05-02 20:23:07 +00:00
}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)
2017-05-01 22:28:16 +00:00
payload := buf.NewMultiBuffer()
pb1 := buf.New()
pb1.Append([]byte("abcd"))
payload.Append(pb1)
pb2 := buf.New()
pb2.Append([]byte("efgh"))
payload.Append(pb2)
2017-10-24 14:15:35 +00:00
assert(writer.Write(payload), IsNil)
assert(cache.Len(), GreaterThan, 0)
assert(writer.Write(buf.NewMultiBuffer()), IsNil)
assert(err, IsNil)
2017-05-01 22:28:16 +00:00
reader := NewAuthenticationReader(&AEADAuthenticator{
AEAD: aead,
NonceGenerator: &StaticBytesGenerator{
Content: iv,
},
AdditionalDataGenerator: &NoOpBytesGenerator{},
2017-05-02 20:23:07 +00:00
}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)
2017-05-01 22:28:16 +00:00
mb, err := reader.Read()
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2017-05-01 22:28:16 +00:00
b1 := mb.SplitFirst()
2017-10-24 14:15:35 +00:00
assert(b1.String(), Equals, "abcd")
2017-05-01 22:28:16 +00:00
b2 := mb.SplitFirst()
2017-10-24 14:15:35 +00:00
assert(b2.String(), Equals, "efgh")
assert(mb.IsEmpty(), IsTrue)
2017-05-01 22:28:16 +00:00
_, err = reader.Read()
2017-10-24 14:15:35 +00:00
assert(err, Equals, io.EOF)
2017-05-01 22:28:16 +00:00
}