1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-22 04:14:26 -04:00
v2fly/transport/internet/kcp/crypt.go

65 lines
1.4 KiB
Go
Raw Normal View History

2016-06-14 17:25:06 -04:00
package kcp
2016-06-17 10:51:41 -04:00
import (
"hash/fnv"
"github.com/v2ray/v2ray-core/common/alloc"
"github.com/v2ray/v2ray-core/common/serial"
)
type Authenticator interface {
HeaderSize() int
2016-06-14 17:25:06 -04:00
// Encrypt encrypts the whole block in src into dst.
// Dst and src may point at the same memory.
2016-06-17 10:51:41 -04:00
Seal(buffer *alloc.Buffer)
2016-06-14 17:25:06 -04:00
// Decrypt decrypts the whole block in src into dst.
// Dst and src may point at the same memory.
2016-06-17 10:51:41 -04:00
Open(buffer *alloc.Buffer) bool
}
type SimpleAuthenticator struct{}
func NewSimpleAuthenticator() Authenticator {
return &SimpleAuthenticator{}
2016-06-14 17:25:06 -04:00
}
2016-06-17 10:51:41 -04:00
func (this *SimpleAuthenticator) HeaderSize() int {
return 6
2016-06-14 17:25:06 -04:00
}
2016-06-17 10:51:41 -04:00
func (this *SimpleAuthenticator) Seal(buffer *alloc.Buffer) {
var length uint16 = uint16(buffer.Len())
buffer.Prepend(serial.Uint16ToBytes(length))
fnvHash := fnv.New32a()
fnvHash.Write(buffer.Value)
buffer.SliceBack(4)
fnvHash.Sum(buffer.Value[:0])
for i := 4; i < buffer.Len(); i++ {
buffer.Value[i] ^= buffer.Value[i-4]
}
2016-06-14 17:25:06 -04:00
}
2016-06-17 10:51:41 -04:00
func (this *SimpleAuthenticator) Open(buffer *alloc.Buffer) bool {
for i := buffer.Len() - 1; i >= 4; i-- {
buffer.Value[i] ^= buffer.Value[i-4]
}
fnvHash := fnv.New32a()
fnvHash.Write(buffer.Value[4:])
if serial.BytesToUint32(buffer.Value[:4]) != fnvHash.Sum32() {
return false
}
length := serial.BytesToUint16(buffer.Value[4:6])
if buffer.Len()-6 != int(length) {
return false
}
buffer.SliceFrom(6)
return true
}