mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
28 lines
564 B
Go
28 lines
564 B
Go
package encoding_test
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
. "github.com/v2fly/v2ray-core/v5/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)
|
|
}
|
|
}
|