1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-18 03:04:16 -04:00
v2fly/transport/internet/kcp/crypt_test.go

37 lines
736 B
Go
Raw Normal View History

2016-06-17 10:51:41 -04:00
package kcp_test
import (
"testing"
2016-08-20 14:55:45 -04:00
. "v2ray.com/core/transport/internet/kcp"
2017-10-26 15:44:22 -04:00
. "v2ray.com/ext/assert"
2016-06-17 10:51:41 -04:00
)
func TestSimpleAuthenticator(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2016-06-17 10:51:41 -04:00
2016-12-08 10:27:41 -05:00
cache := make([]byte, 512)
2016-06-17 10:51:41 -04:00
2016-12-08 10:27:41 -05:00
payload := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}
2016-06-17 10:51:41 -04:00
2016-12-08 10:27:41 -05:00
auth := NewSimpleAuthenticator()
b := auth.Seal(cache[:0], nil, payload, nil)
c, err := auth.Open(cache[:0], nil, b, nil)
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(c, Equals, payload)
}
func TestSimpleAuthenticator2(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2016-12-08 10:27:41 -05:00
cache := make([]byte, 512)
2016-12-08 10:27:41 -05:00
payload := []byte{'a', 'b'}
auth := NewSimpleAuthenticator()
2016-12-08 10:27:41 -05:00
b := auth.Seal(cache[:0], nil, payload, nil)
c, err := auth.Open(cache[:0], nil, b, nil)
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(c, Equals, payload)
2016-06-17 10:51:41 -04:00
}