1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-16 00:48:14 -04:00
v2fly/transport/internet/authenticators/srtp/srtp.go
2016-09-21 14:39:07 +02:00

44 lines
794 B
Go

package srtp
import (
"math/rand"
"v2ray.com/core/common/alloc"
"v2ray.com/core/transport/internet"
)
type SRTP struct {
header uint16
number uint16
}
func (this *SRTP) Overhead() int {
return 4
}
func (this *SRTP) Open(payload *alloc.Buffer) bool {
payload.SliceFrom(this.Overhead())
return true
}
func (this *SRTP) Seal(payload *alloc.Buffer) {
this.number++
payload.PrependUint16(this.number)
payload.PrependUint16(this.header)
}
type SRTPFactory struct {
}
func (this SRTPFactory) Create(rawSettings interface{}) internet.Authenticator {
return &SRTP{
header: 0xB5E8,
number: uint16(rand.Intn(65536)),
}
}
func init() {
internet.RegisterAuthenticator("srtp", SRTPFactory{})
internet.RegisterAuthenticatorConfig("srtp", func() interface{} { return &Config{} })
}