1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/vmess/encoding/auth_test.go

27 lines
546 B
Go
Raw Normal View History

2016-12-07 17:32:40 +01:00
package encoding_test
import (
"crypto/rand"
"testing"
2017-07-25 22:28:48 +02:00
"v2ray.com/core/common"
2016-12-07 17:32:40 +01:00
. "v2ray.com/core/proxy/vmess/encoding"
2017-10-24 16:15:35 +02:00
. "v2ray.com/ext/assert"
2016-12-07 17:32:40 +01:00
)
func TestFnvAuth(t *testing.T) {
2017-10-24 16:15:35 +02:00
assert := With(t)
2016-12-07 17:32:40 +01:00
fnvAuth := new(FnvAuthenticator)
expectedText := make([]byte, 256)
2017-07-25 22:28:48 +02:00
_, err := rand.Read(expectedText)
common.Must(err)
2016-12-07 17:32:40 +01:00
buffer := make([]byte, 512)
2016-12-08 11:08:46 +01:00
b := fnvAuth.Seal(buffer[:0], nil, expectedText, nil)
2017-07-25 22:28:48 +02:00
b, err = fnvAuth.Open(buffer[:0], nil, b, nil)
2017-10-24 16:15:35 +02:00
assert(err, IsNil)
assert(len(b), Equals, 256)
assert(b, Equals, expectedText)
2016-12-07 17:32:40 +01:00
}