v2ray-core/proxy/vmess/io/writer.go

40 lines
760 B
Go
Raw Normal View History

2016-02-01 12:22:29 +01:00
package io
import (
"hash/fnv"
"github.com/v2ray/v2ray-core/common/alloc"
v2io "github.com/v2ray/v2ray-core/common/io"
"github.com/v2ray/v2ray-core/common/serial"
)
type AuthChunkWriter struct {
2016-04-12 21:43:13 +02:00
writer v2io.Writer
2016-02-01 12:22:29 +01:00
}
2016-04-12 21:43:13 +02:00
func NewAuthChunkWriter(writer v2io.Writer) *AuthChunkWriter {
2016-02-01 12:22:29 +01:00
return &AuthChunkWriter{
writer: writer,
}
}
func (this *AuthChunkWriter) Write(buffer *alloc.Buffer) error {
Authenticate(buffer)
return this.writer.Write(buffer)
}
2016-03-11 23:51:58 +01:00
func (this *AuthChunkWriter) Release() {
2016-03-24 23:36:18 +08:00
this.writer.Release()
2016-04-12 21:43:13 +02:00
this.writer = nil
2016-03-11 23:51:58 +01:00
}
2016-02-01 12:22:29 +01:00
func Authenticate(buffer *alloc.Buffer) {
fnvHash := fnv.New32a()
fnvHash.Write(buffer.Value)
buffer.SliceBack(4)
fnvHash.Sum(buffer.Value[:0])
2016-05-24 21:55:46 +02:00
buffer.Prepend(serial.Uint16ToBytes(uint16(buffer.Len())))
2016-02-01 12:22:29 +01:00
}