| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 | package crypto_testimport (	"crypto/aes"	"crypto/cipher"	"crypto/rand"	"io"	"testing"	"v2ray.com/core/common/buf"	. "v2ray.com/core/common/crypto"	"v2ray.com/core/common/protocol"	. "v2ray.com/ext/assert")func TestAuthenticationReaderWriter(t *testing.T) {	assert := With(t)	key := make([]byte, 16)	rand.Read(key)	block, err := aes.NewCipher(key)	assert(err, IsNil)	aead, err := cipher.NewGCM(block)	assert(err, IsNil)	rawPayload := make([]byte, 8192*10)	rand.Read(rawPayload)	payload := buf.NewLocal(8192 * 10)	payload.Append(rawPayload)	cache := buf.NewLocal(160 * 1024)	iv := make([]byte, 12)	rand.Read(iv)	writer := NewAuthenticationWriter(&AEADAuthenticator{		AEAD: aead,		NonceGenerator: &StaticBytesGenerator{			Content: iv,		},		AdditionalDataGenerator: &NoOpBytesGenerator{},	}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)	assert(writer.Write(buf.NewMultiBufferValue(payload)), IsNil)	assert(cache.Len(), Equals, 83360)	assert(writer.Write(buf.MultiBuffer{}), IsNil)	assert(err, IsNil)	reader := NewAuthenticationReader(&AEADAuthenticator{		AEAD: aead,		NonceGenerator: &StaticBytesGenerator{			Content: iv,		},		AdditionalDataGenerator: &NoOpBytesGenerator{},	}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)	var mb buf.MultiBuffer	for mb.Len() < len(rawPayload) {		mb2, err := reader.Read()		assert(err, IsNil)		mb.AppendMulti(mb2)	}	mbContent := make([]byte, 8192*10)	mb.Read(mbContent)	assert(mbContent, Equals, rawPayload)	_, err = reader.Read()	assert(err, Equals, io.EOF)}func TestAuthenticationReaderWriterPacket(t *testing.T) {	assert := With(t)	key := make([]byte, 16)	rand.Read(key)	block, err := aes.NewCipher(key)	assert(err, IsNil)	aead, err := cipher.NewGCM(block)	assert(err, IsNil)	cache := buf.NewLocal(1024)	iv := make([]byte, 12)	rand.Read(iv)	writer := NewAuthenticationWriter(&AEADAuthenticator{		AEAD: aead,		NonceGenerator: &StaticBytesGenerator{			Content: iv,		},		AdditionalDataGenerator: &NoOpBytesGenerator{},	}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)	var payload buf.MultiBuffer	pb1 := buf.New()	pb1.Append([]byte("abcd"))	payload.Append(pb1)	pb2 := buf.New()	pb2.Append([]byte("efgh"))	payload.Append(pb2)	assert(writer.Write(payload), IsNil)	assert(cache.Len(), GreaterThan, 0)	assert(writer.Write(buf.MultiBuffer{}), IsNil)	assert(err, IsNil)	reader := NewAuthenticationReader(&AEADAuthenticator{		AEAD: aead,		NonceGenerator: &StaticBytesGenerator{			Content: iv,		},		AdditionalDataGenerator: &NoOpBytesGenerator{},	}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)	mb, err := reader.Read()	assert(err, IsNil)	b1 := mb.SplitFirst()	assert(b1.String(), Equals, "abcd")	b2 := mb.SplitFirst()	assert(b2.String(), Equals, "efgh")	assert(mb.IsEmpty(), IsTrue)	_, err = reader.Read()	assert(err, Equals, io.EOF)}
 |