2020-11-25 13:01:53 +02:00
|
|
|
package encoding
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/md5"
|
|
|
|
"encoding/binary"
|
|
|
|
"hash/fnv"
|
|
|
|
|
2021-12-15 02:28:47 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
2021-04-29 01:29:42 +03:00
|
|
|
"github.com/xtls/xray-core/common/crypto"
|
2022-05-18 10:29:01 +03:00
|
|
|
"golang.org/x/crypto/sha3"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Authenticate authenticates a byte array using Fnv hash.
|
|
|
|
func Authenticate(b []byte) uint32 {
|
|
|
|
fnv1hash := fnv.New32a()
|
|
|
|
common.Must2(fnv1hash.Write(b))
|
|
|
|
return fnv1hash.Sum32()
|
|
|
|
}
|
|
|
|
|
2023-06-18 20:42:17 +03:00
|
|
|
// [DEPRECATED 2023-06]
|
2020-11-25 13:01:53 +02:00
|
|
|
type NoOpAuthenticator struct{}
|
|
|
|
|
|
|
|
func (NoOpAuthenticator) NonceSize() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (NoOpAuthenticator) Overhead() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Seal implements AEAD.Seal().
|
|
|
|
func (NoOpAuthenticator) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
|
|
|
|
return append(dst[:0], plaintext...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open implements AEAD.Open().
|
|
|
|
func (NoOpAuthenticator) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
|
|
|
|
return append(dst[:0], ciphertext...), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenerateChacha20Poly1305Key generates a 32-byte key from a given 16-byte array.
|
|
|
|
func GenerateChacha20Poly1305Key(b []byte) []byte {
|
|
|
|
key := make([]byte, 32)
|
|
|
|
t := md5.Sum(b)
|
|
|
|
copy(key, t[:])
|
|
|
|
t = md5.Sum(key[:16])
|
|
|
|
copy(key[16:], t[:])
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
|
|
|
type ShakeSizeParser struct {
|
|
|
|
shake sha3.ShakeHash
|
|
|
|
buffer [2]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewShakeSizeParser(nonce []byte) *ShakeSizeParser {
|
|
|
|
shake := sha3.NewShake128()
|
|
|
|
common.Must2(shake.Write(nonce))
|
|
|
|
return &ShakeSizeParser{
|
|
|
|
shake: shake,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*ShakeSizeParser) SizeBytes() int32 {
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShakeSizeParser) next() uint16 {
|
|
|
|
common.Must2(s.shake.Read(s.buffer[:]))
|
|
|
|
return binary.BigEndian.Uint16(s.buffer[:])
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShakeSizeParser) Decode(b []byte) (uint16, error) {
|
|
|
|
mask := s.next()
|
|
|
|
size := binary.BigEndian.Uint16(b)
|
|
|
|
return mask ^ size, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShakeSizeParser) Encode(size uint16, b []byte) []byte {
|
|
|
|
mask := s.next()
|
|
|
|
binary.BigEndian.PutUint16(b, mask^size)
|
|
|
|
return b[:2]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShakeSizeParser) NextPaddingLen() uint16 {
|
|
|
|
return s.next() % 64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ShakeSizeParser) MaxPaddingLen() uint16 {
|
|
|
|
return 64
|
|
|
|
}
|
2021-04-29 01:29:42 +03:00
|
|
|
|
|
|
|
type AEADSizeParser struct {
|
|
|
|
crypto.AEADChunkSizeParser
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewAEADSizeParser(auth *crypto.AEADAuthenticator) *AEADSizeParser {
|
|
|
|
return &AEADSizeParser{crypto.AEADChunkSizeParser{Auth: auth}}
|
|
|
|
}
|