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.
25 lines
521 B
25 lines
521 B
package encoding_test
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
. "v2ray.com/core/proxy/vmess/encoding"
|
|
"v2ray.com/core/testing/assert"
|
|
)
|
|
|
|
func TestFnvAuth(t *testing.T) {
|
|
assert := assert.On(t)
|
|
fnvAuth := new(FnvAuthenticator)
|
|
|
|
expectedText := make([]byte, 256)
|
|
rand.Read(expectedText)
|
|
|
|
buffer := make([]byte, 512)
|
|
b := fnvAuth.Seal(buffer[:0], nil, expectedText, nil)
|
|
b, err := fnvAuth.Open(buffer[:0], nil, b, nil)
|
|
assert.Error(err).IsNil()
|
|
assert.Int(len(b)).Equals(256)
|
|
assert.Bytes(b).Equals(expectedText)
|
|
}
|