mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
684 B
39 lines
684 B
package srtp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"v2ray.com/core/common"
|
|
"v2ray.com/core/common/dice"
|
|
"v2ray.com/core/common/serial"
|
|
)
|
|
|
|
type SRTP struct {
|
|
header uint16
|
|
number uint16
|
|
}
|
|
|
|
func (*SRTP) Size() int32 {
|
|
return 4
|
|
}
|
|
|
|
// Write implements io.Writer.
|
|
func (s *SRTP) Write(b []byte) (int, error) {
|
|
s.number++
|
|
serial.Uint16ToBytes(s.number, b[:0])
|
|
serial.Uint16ToBytes(s.number, b[:2])
|
|
return 4, nil
|
|
}
|
|
|
|
// New returns a new SRTP instance based on the given config.
|
|
func New(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return &SRTP{
|
|
header: 0xB5E8,
|
|
number: dice.RollUint16(),
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*Config)(nil), New))
|
|
}
|