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

37 lines
649 B
Go
Raw Normal View History

2016-02-01 12:22:29 +01:00
package io
import (
"hash/fnv"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/common/alloc"
v2io "v2ray.com/core/common/io"
2016-02-01 12:22:29 +01:00
)
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)
2016-07-17 23:11:05 +02:00
buffer.PrependHash(fnvHash)
2016-02-01 12:22:29 +01:00
2016-06-26 22:34:48 +02:00
buffer.PrependUint16(uint16(buffer.Len()))
2016-02-01 12:22:29 +01:00
}