1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-15 16:38:16 -04:00
v2fly/proxy/vmess/encoding/auth_test.go

27 lines
546 B
Go
Raw Normal View History

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