mirror of https://github.com/v2ray/v2ray-core
simplify BytesGenerator
parent
f175d322ae
commit
66ed1bab2a
|
@ -9,44 +9,36 @@ import (
|
||||||
"v2ray.com/core/common/protocol"
|
"v2ray.com/core/common/protocol"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BytesGenerator interface {
|
type BytesGenerator func() []byte
|
||||||
Next() []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
type NoOpBytesGenerator struct {
|
func GenerateEmptyBytes() BytesGenerator {
|
||||||
buffer [1]byte
|
var b [1]byte
|
||||||
}
|
return func() []byte {
|
||||||
|
return b[:0]
|
||||||
func (v NoOpBytesGenerator) Next() []byte {
|
|
||||||
return v.buffer[:0]
|
|
||||||
}
|
|
||||||
|
|
||||||
type StaticBytesGenerator struct {
|
|
||||||
Content []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v StaticBytesGenerator) Next() []byte {
|
|
||||||
return v.Content
|
|
||||||
}
|
|
||||||
|
|
||||||
type IncreasingAEADNonceGenerator struct {
|
|
||||||
nonce []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewIncreasingAEADNonceGenerator() *IncreasingAEADNonceGenerator {
|
|
||||||
return &IncreasingAEADNonceGenerator{
|
|
||||||
nonce: []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g *IncreasingAEADNonceGenerator) Next() []byte {
|
func GenerateStaticBytes(content []byte) BytesGenerator {
|
||||||
for i := range g.nonce {
|
return func() []byte {
|
||||||
g.nonce[i]++
|
return content
|
||||||
if g.nonce[i] != 0 {
|
}
|
||||||
break
|
}
|
||||||
|
|
||||||
|
func GenerateIncreasingNonce(nonce []byte) BytesGenerator {
|
||||||
|
c := append([]byte(nil), nonce...)
|
||||||
|
return func() []byte {
|
||||||
|
for i := range c {
|
||||||
|
c[i]++
|
||||||
|
if c[i] != 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
return c
|
||||||
}
|
}
|
||||||
return g.nonce
|
}
|
||||||
|
|
||||||
|
func GenerateInitialAEADNonce() BytesGenerator {
|
||||||
|
return GenerateIncreasingNonce([]byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF})
|
||||||
}
|
}
|
||||||
|
|
||||||
type Authenticator interface {
|
type Authenticator interface {
|
||||||
|
@ -63,27 +55,27 @@ type AEADAuthenticator struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (v *AEADAuthenticator) Open(dst, cipherText []byte) ([]byte, error) {
|
func (v *AEADAuthenticator) Open(dst, cipherText []byte) ([]byte, error) {
|
||||||
iv := v.NonceGenerator.Next()
|
iv := v.NonceGenerator()
|
||||||
if len(iv) != v.AEAD.NonceSize() {
|
if len(iv) != v.AEAD.NonceSize() {
|
||||||
return nil, newError("invalid AEAD nonce size: ", len(iv))
|
return nil, newError("invalid AEAD nonce size: ", len(iv))
|
||||||
}
|
}
|
||||||
|
|
||||||
var additionalData []byte
|
var additionalData []byte
|
||||||
if v.AdditionalDataGenerator != nil {
|
if v.AdditionalDataGenerator != nil {
|
||||||
additionalData = v.AdditionalDataGenerator.Next()
|
additionalData = v.AdditionalDataGenerator()
|
||||||
}
|
}
|
||||||
return v.AEAD.Open(dst, iv, cipherText, additionalData)
|
return v.AEAD.Open(dst, iv, cipherText, additionalData)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (v *AEADAuthenticator) Seal(dst, plainText []byte) ([]byte, error) {
|
func (v *AEADAuthenticator) Seal(dst, plainText []byte) ([]byte, error) {
|
||||||
iv := v.NonceGenerator.Next()
|
iv := v.NonceGenerator()
|
||||||
if len(iv) != v.AEAD.NonceSize() {
|
if len(iv) != v.AEAD.NonceSize() {
|
||||||
return nil, newError("invalid AEAD nonce size: ", len(iv))
|
return nil, newError("invalid AEAD nonce size: ", len(iv))
|
||||||
}
|
}
|
||||||
|
|
||||||
var additionalData []byte
|
var additionalData []byte
|
||||||
if v.AdditionalDataGenerator != nil {
|
if v.AdditionalDataGenerator != nil {
|
||||||
additionalData = v.AdditionalDataGenerator.Next()
|
additionalData = v.AdditionalDataGenerator()
|
||||||
}
|
}
|
||||||
return v.AEAD.Seal(dst, iv, plainText, additionalData), nil
|
return v.AEAD.Seal(dst, iv, plainText, additionalData), nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,11 +37,9 @@ func TestAuthenticationReaderWriter(t *testing.T) {
|
||||||
rand.Read(iv)
|
rand.Read(iv)
|
||||||
|
|
||||||
writer := NewAuthenticationWriter(&AEADAuthenticator{
|
writer := NewAuthenticationWriter(&AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &StaticBytesGenerator{
|
NonceGenerator: GenerateStaticBytes(iv),
|
||||||
Content: iv,
|
AdditionalDataGenerator: GenerateEmptyBytes(),
|
||||||
},
|
|
||||||
AdditionalDataGenerator: &NoOpBytesGenerator{},
|
|
||||||
}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)
|
}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)
|
||||||
|
|
||||||
assert(writer.WriteMultiBuffer(buf.NewMultiBufferValue(payload)), IsNil)
|
assert(writer.WriteMultiBuffer(buf.NewMultiBufferValue(payload)), IsNil)
|
||||||
|
@ -49,11 +47,9 @@ func TestAuthenticationReaderWriter(t *testing.T) {
|
||||||
assert(writer.WriteMultiBuffer(buf.MultiBuffer{}), IsNil)
|
assert(writer.WriteMultiBuffer(buf.MultiBuffer{}), IsNil)
|
||||||
|
|
||||||
reader := NewAuthenticationReader(&AEADAuthenticator{
|
reader := NewAuthenticationReader(&AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &StaticBytesGenerator{
|
NonceGenerator: GenerateStaticBytes(iv),
|
||||||
Content: iv,
|
AdditionalDataGenerator: GenerateEmptyBytes(),
|
||||||
},
|
|
||||||
AdditionalDataGenerator: &NoOpBytesGenerator{},
|
|
||||||
}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)
|
}, PlainChunkSizeParser{}, cache, protocol.TransferTypeStream)
|
||||||
|
|
||||||
var mb buf.MultiBuffer
|
var mb buf.MultiBuffer
|
||||||
|
@ -91,11 +87,9 @@ func TestAuthenticationReaderWriterPacket(t *testing.T) {
|
||||||
rand.Read(iv)
|
rand.Read(iv)
|
||||||
|
|
||||||
writer := NewAuthenticationWriter(&AEADAuthenticator{
|
writer := NewAuthenticationWriter(&AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &StaticBytesGenerator{
|
NonceGenerator: GenerateStaticBytes(iv),
|
||||||
Content: iv,
|
AdditionalDataGenerator: GenerateEmptyBytes(),
|
||||||
},
|
|
||||||
AdditionalDataGenerator: &NoOpBytesGenerator{},
|
|
||||||
}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)
|
}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)
|
||||||
|
|
||||||
var payload buf.MultiBuffer
|
var payload buf.MultiBuffer
|
||||||
|
@ -113,11 +107,9 @@ func TestAuthenticationReaderWriterPacket(t *testing.T) {
|
||||||
assert(err, IsNil)
|
assert(err, IsNil)
|
||||||
|
|
||||||
reader := NewAuthenticationReader(&AEADAuthenticator{
|
reader := NewAuthenticationReader(&AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &StaticBytesGenerator{
|
NonceGenerator: GenerateStaticBytes(iv),
|
||||||
Content: iv,
|
AdditionalDataGenerator: GenerateEmptyBytes(),
|
||||||
},
|
|
||||||
AdditionalDataGenerator: &NoOpBytesGenerator{},
|
|
||||||
}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)
|
}, PlainChunkSizeParser{}, cache, protocol.TransferTypePacket)
|
||||||
|
|
||||||
mb, err := reader.ReadMultiBuffer()
|
mb, err := reader.ReadMultiBuffer()
|
||||||
|
|
|
@ -169,7 +169,7 @@ func (c *AEADCipher) IVSize() int32 {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *AEADCipher) createAuthenticator(key []byte, iv []byte) *crypto.AEADAuthenticator {
|
func (c *AEADCipher) createAuthenticator(key []byte, iv []byte) *crypto.AEADAuthenticator {
|
||||||
nonce := crypto.NewIncreasingAEADNonceGenerator()
|
nonce := crypto.GenerateInitialAEADNonce()
|
||||||
subkey := make([]byte, c.KeyBytes)
|
subkey := make([]byte, c.KeyBytes)
|
||||||
hkdfSHA1(key, iv, subkey)
|
hkdfSHA1(key, iv, subkey)
|
||||||
return &crypto.AEADAuthenticator{
|
return &crypto.AEADAuthenticator{
|
||||||
|
|
|
@ -120,8 +120,8 @@ func (c *ClientSession) EncodeRequestBody(request *protocol.RequestHeader, write
|
||||||
}
|
}
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(NoOpAuthenticator),
|
AEAD: new(NoOpAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, protocol.TransferTypePacket)
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, protocol.TransferTypePacket)
|
||||||
}
|
}
|
||||||
|
@ -133,8 +133,8 @@ func (c *ClientSession) EncodeRequestBody(request *protocol.RequestHeader, write
|
||||||
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(FnvAuthenticator),
|
AEAD: new(FnvAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, cryptionWriter, request.Command.TransferType())
|
return crypto.NewAuthenticationWriter(auth, sizeParser, cryptionWriter, request.Command.TransferType())
|
||||||
}
|
}
|
||||||
|
@ -145,24 +145,18 @@ func (c *ClientSession) EncodeRequestBody(request *protocol.RequestHeader, write
|
||||||
aead, _ := cipher.NewGCM(block)
|
aead, _ := cipher.NewGCM(block)
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(c.requestBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), c.requestBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
||||||
case protocol.SecurityType_CHACHA20_POLY1305:
|
case protocol.SecurityType_CHACHA20_POLY1305:
|
||||||
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(c.requestBodyKey))
|
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(c.requestBodyKey))
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(c.requestBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), c.requestBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
||||||
default:
|
default:
|
||||||
|
@ -219,8 +213,8 @@ func (c *ClientSession) DecodeResponseBody(request *protocol.RequestHeader, read
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(NoOpAuthenticator),
|
AEAD: new(NoOpAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
|
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, reader, protocol.TransferTypePacket)
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, protocol.TransferTypePacket)
|
||||||
|
@ -231,8 +225,8 @@ func (c *ClientSession) DecodeResponseBody(request *protocol.RequestHeader, read
|
||||||
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(FnvAuthenticator),
|
AEAD: new(FnvAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, c.responseReader, request.Command.TransferType())
|
return crypto.NewAuthenticationReader(auth, sizeParser, c.responseReader, request.Command.TransferType())
|
||||||
}
|
}
|
||||||
|
@ -243,24 +237,18 @@ func (c *ClientSession) DecodeResponseBody(request *protocol.RequestHeader, read
|
||||||
aead, _ := cipher.NewGCM(block)
|
aead, _ := cipher.NewGCM(block)
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(c.responseBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), c.responseBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
||||||
case protocol.SecurityType_CHACHA20_POLY1305:
|
case protocol.SecurityType_CHACHA20_POLY1305:
|
||||||
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(c.responseBodyKey))
|
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(c.responseBodyKey))
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(c.responseBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), c.responseBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
||||||
default:
|
default:
|
||||||
|
@ -268,14 +256,12 @@ func (c *ClientSession) DecodeResponseBody(request *protocol.RequestHeader, read
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChunkNonceGenerator struct {
|
func GenerateChunkNonce(nonce []byte, size uint32) crypto.BytesGenerator {
|
||||||
Nonce []byte
|
c := append([]byte(nil), nonce...)
|
||||||
Size int
|
count := uint16(0)
|
||||||
count uint16
|
return func() []byte {
|
||||||
}
|
serial.Uint16ToBytes(count, c[:0])
|
||||||
|
count++
|
||||||
func (g *ChunkNonceGenerator) Next() []byte {
|
return c[:size]
|
||||||
serial.Uint16ToBytes(g.count, g.Nonce[:0])
|
}
|
||||||
g.count++
|
|
||||||
return g.Nonce[:g.Size]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,13 +9,13 @@ import (
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"v2ray.com/core/common/dice"
|
|
||||||
|
|
||||||
"golang.org/x/crypto/chacha20poly1305"
|
"golang.org/x/crypto/chacha20poly1305"
|
||||||
|
|
||||||
"v2ray.com/core/common"
|
"v2ray.com/core/common"
|
||||||
"v2ray.com/core/common/bitmask"
|
"v2ray.com/core/common/bitmask"
|
||||||
"v2ray.com/core/common/buf"
|
"v2ray.com/core/common/buf"
|
||||||
"v2ray.com/core/common/crypto"
|
"v2ray.com/core/common/crypto"
|
||||||
|
"v2ray.com/core/common/dice"
|
||||||
"v2ray.com/core/common/net"
|
"v2ray.com/core/common/net"
|
||||||
"v2ray.com/core/common/protocol"
|
"v2ray.com/core/common/protocol"
|
||||||
"v2ray.com/core/common/serial"
|
"v2ray.com/core/common/serial"
|
||||||
|
@ -238,8 +238,8 @@ func (s *ServerSession) DecodeRequestBody(request *protocol.RequestHeader, reade
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(NoOpAuthenticator),
|
AEAD: new(NoOpAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, reader, protocol.TransferTypePacket)
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, protocol.TransferTypePacket)
|
||||||
}
|
}
|
||||||
|
@ -251,8 +251,8 @@ func (s *ServerSession) DecodeRequestBody(request *protocol.RequestHeader, reade
|
||||||
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(FnvAuthenticator),
|
AEAD: new(FnvAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, cryptionReader, request.Command.TransferType())
|
return crypto.NewAuthenticationReader(auth, sizeParser, cryptionReader, request.Command.TransferType())
|
||||||
}
|
}
|
||||||
|
@ -263,24 +263,18 @@ func (s *ServerSession) DecodeRequestBody(request *protocol.RequestHeader, reade
|
||||||
aead, _ := cipher.NewGCM(block)
|
aead, _ := cipher.NewGCM(block)
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(s.requestBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), s.requestBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
||||||
case protocol.SecurityType_CHACHA20_POLY1305:
|
case protocol.SecurityType_CHACHA20_POLY1305:
|
||||||
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(s.requestBodyKey))
|
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(s.requestBodyKey))
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(s.requestBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), s.requestBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
return crypto.NewAuthenticationReader(auth, sizeParser, reader, request.Command.TransferType())
|
||||||
default:
|
default:
|
||||||
|
@ -319,8 +313,8 @@ func (s *ServerSession) EncodeResponseBody(request *protocol.RequestHeader, writ
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(NoOpAuthenticator),
|
AEAD: new(NoOpAuthenticator),
|
||||||
NonceGenerator: &crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, protocol.TransferTypePacket)
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, protocol.TransferTypePacket)
|
||||||
}
|
}
|
||||||
|
@ -330,8 +324,8 @@ func (s *ServerSession) EncodeResponseBody(request *protocol.RequestHeader, writ
|
||||||
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: new(FnvAuthenticator),
|
AEAD: new(FnvAuthenticator),
|
||||||
NonceGenerator: crypto.NoOpBytesGenerator{},
|
NonceGenerator: crypto.GenerateEmptyBytes(),
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, s.responseWriter, request.Command.TransferType())
|
return crypto.NewAuthenticationWriter(auth, sizeParser, s.responseWriter, request.Command.TransferType())
|
||||||
}
|
}
|
||||||
|
@ -342,24 +336,18 @@ func (s *ServerSession) EncodeResponseBody(request *protocol.RequestHeader, writ
|
||||||
aead, _ := cipher.NewGCM(block)
|
aead, _ := cipher.NewGCM(block)
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(s.responseBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), s.responseBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
||||||
case protocol.SecurityType_CHACHA20_POLY1305:
|
case protocol.SecurityType_CHACHA20_POLY1305:
|
||||||
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(s.responseBodyKey))
|
aead, _ := chacha20poly1305.New(GenerateChacha20Poly1305Key(s.responseBodyKey))
|
||||||
|
|
||||||
auth := &crypto.AEADAuthenticator{
|
auth := &crypto.AEADAuthenticator{
|
||||||
AEAD: aead,
|
AEAD: aead,
|
||||||
NonceGenerator: &ChunkNonceGenerator{
|
NonceGenerator: GenerateChunkNonce(s.responseBodyIV, uint32(aead.NonceSize())),
|
||||||
Nonce: append([]byte(nil), s.responseBodyIV...),
|
AdditionalDataGenerator: crypto.GenerateEmptyBytes(),
|
||||||
Size: aead.NonceSize(),
|
|
||||||
},
|
|
||||||
AdditionalDataGenerator: crypto.NoOpBytesGenerator{},
|
|
||||||
}
|
}
|
||||||
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
return crypto.NewAuthenticationWriter(auth, sizeParser, writer, request.Command.TransferType())
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue