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.
28 lines
532 B
28 lines
532 B
package encoding_test
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
"v2ray.com/core/common"
|
|
. "v2ray.com/core/proxy/vmess/encoding"
|
|
)
|
|
|
|
func TestFnvAuth(t *testing.T) {
|
|
fnvAuth := new(FnvAuthenticator)
|
|
|
|
expectedText := make([]byte, 256)
|
|
_, err := rand.Read(expectedText)
|
|
common.Must(err)
|
|
|
|
buffer := make([]byte, 512)
|
|
b := fnvAuth.Seal(buffer[:0], nil, expectedText, nil)
|
|
b, err = fnvAuth.Open(buffer[:0], nil, b, nil)
|
|
common.Must(err)
|
|
if r := cmp.Diff(b, expectedText); r != "" {
|
|
t.Error(r)
|
|
}
|
|
}
|