| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | 
							- package kcp
 
- import (
 
- 	"crypto/cipher"
 
- 	"hash/fnv"
 
- 	"v2ray.com/core/common"
 
- 	"v2ray.com/core/common/serial"
 
- )
 
- // SimpleAuthenticator is a legacy AEAD used for KCP encryption.
 
- type SimpleAuthenticator struct{}
 
- // NewSimpleAuthenticator creates a new SimpleAuthenticator
 
- func NewSimpleAuthenticator() cipher.AEAD {
 
- 	return &SimpleAuthenticator{}
 
- }
 
- // NonceSize implements cipher.AEAD.NonceSize().
 
- func (*SimpleAuthenticator) NonceSize() int {
 
- 	return 0
 
- }
 
- // Overhead implements cipher.AEAD.NonceSize().
 
- func (*SimpleAuthenticator) Overhead() int {
 
- 	return 6
 
- }
 
- // Seal implements cipher.AEAD.Seal().
 
- func (a *SimpleAuthenticator) Seal(dst, nonce, plain, extra []byte) []byte {
 
- 	dst = append(dst, 0, 0, 0, 0)
 
- 	dst = serial.Uint16ToBytes(uint16(len(plain)), dst)
 
- 	dst = append(dst, plain...)
 
- 	fnvHash := fnv.New32a()
 
- 	common.Must2(fnvHash.Write(dst[4:]))
 
- 	fnvHash.Sum(dst[:0])
 
- 	dstLen := len(dst)
 
- 	xtra := 4 - dstLen%4
 
- 	if xtra != 4 {
 
- 		dst = append(dst, make([]byte, xtra)...)
 
- 	}
 
- 	xorfwd(dst)
 
- 	if xtra != 4 {
 
- 		dst = dst[:dstLen]
 
- 	}
 
- 	return dst
 
- }
 
- // Open implements cipher.AEAD.Open().
 
- func (a *SimpleAuthenticator) Open(dst, nonce, cipherText, extra []byte) ([]byte, error) {
 
- 	dst = append(dst, cipherText...)
 
- 	dstLen := len(dst)
 
- 	xtra := 4 - dstLen%4
 
- 	if xtra != 4 {
 
- 		dst = append(dst, make([]byte, xtra)...)
 
- 	}
 
- 	xorbkd(dst)
 
- 	if xtra != 4 {
 
- 		dst = dst[:dstLen]
 
- 	}
 
- 	fnvHash := fnv.New32a()
 
- 	common.Must2(fnvHash.Write(dst[4:]))
 
- 	if serial.BytesToUint32(dst[:4]) != fnvHash.Sum32() {
 
- 		return nil, newError("invalid auth")
 
- 	}
 
- 	length := serial.BytesToUint16(dst[4:6])
 
- 	if len(dst)-6 != int(length) {
 
- 		return nil, newError("invalid auth")
 
- 	}
 
- 	return dst[6:], nil
 
- }
 
 
  |