1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 04:35:24 +00:00

format code

This commit is contained in:
V2Ray 2015-09-07 23:48:37 +02:00
parent 2566fc3d14
commit c467da4950
2 changed files with 6 additions and 6 deletions

10
vid.go
View File

@ -1,7 +1,7 @@
package core
import (
"crypto/md5"
"crypto/md5"
"encoding/hex"
"fmt"
)
@ -10,10 +10,10 @@ import (
type VID [16]byte
func (v VID) Hash(suffix []byte) []byte {
md5 := md5.New()
md5.Write(v[:])
md5.Write(suffix)
return md5.Sum(nil)
md5 := md5.New()
md5.Write(v[:])
md5.Write(suffix)
return md5.Sum(nil)
}
var byteGroups = []int{8, 4, 4, 4, 12}

View File

@ -1,5 +1,5 @@
package core
type VUserSet struct {
validUserIds [][]byte
validUserIds [][]byte
}