1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 10:26:10 -04:00
v2fly/vendor/github.com/lucas-clemente/quic-go/internal/handshake/aead.go

119 lines
2.8 KiB
Go
Raw Normal View History

2018-11-23 11:04:53 -05:00
package handshake
import (
"crypto/cipher"
"encoding/binary"
"github.com/lucas-clemente/quic-go/internal/protocol"
)
type sealer struct {
2019-01-02 07:01:06 -05:00
iv []byte
aead cipher.AEAD
pnEncrypter cipher.Block
2018-11-23 11:04:53 -05:00
// use a single slice to avoid allocations
nonceBuf []byte
2019-01-02 07:01:06 -05:00
pnMask []byte
// short headers protect 5 bits in the first byte, long headers only 4
is1RTT bool
2018-11-23 11:04:53 -05:00
}
var _ Sealer = &sealer{}
2019-01-02 07:01:06 -05:00
func newSealer(aead cipher.AEAD, iv []byte, pnEncrypter cipher.Block, is1RTT bool) Sealer {
2018-11-23 11:04:53 -05:00
return &sealer{
2019-01-02 07:01:06 -05:00
iv: iv,
aead: aead,
nonceBuf: make([]byte, aead.NonceSize()),
is1RTT: is1RTT,
pnEncrypter: pnEncrypter,
pnMask: make([]byte, pnEncrypter.BlockSize()),
2018-11-23 11:04:53 -05:00
}
}
func (s *sealer) Seal(dst, src []byte, pn protocol.PacketNumber, ad []byte) []byte {
binary.BigEndian.PutUint64(s.nonceBuf[len(s.nonceBuf)-8:], uint64(pn))
2019-01-02 07:01:06 -05:00
for i := 0; i < len(s.nonceBuf); i++ {
s.nonceBuf[i] ^= s.iv[i]
}
sealed := s.aead.Seal(dst, s.nonceBuf, src, ad)
for i := 0; i < len(s.nonceBuf); i++ {
s.nonceBuf[i] = 0
}
return sealed
}
func (s *sealer) EncryptHeader(sample []byte, firstByte *byte, pnBytes []byte) {
if len(sample) != s.pnEncrypter.BlockSize() {
panic("invalid sample size")
}
s.pnEncrypter.Encrypt(s.pnMask, sample)
if s.is1RTT {
*firstByte ^= s.pnMask[0] & 0x1f
} else {
*firstByte ^= s.pnMask[0] & 0xf
}
for i := range pnBytes {
pnBytes[i] ^= s.pnMask[i+1]
}
2018-11-23 11:04:53 -05:00
}
func (s *sealer) Overhead() int {
return s.aead.Overhead()
}
type opener struct {
2019-01-02 07:01:06 -05:00
iv []byte
aead cipher.AEAD
pnDecrypter cipher.Block
2018-11-23 11:04:53 -05:00
// use a single slice to avoid allocations
nonceBuf []byte
2019-01-02 07:01:06 -05:00
pnMask []byte
// short headers protect 5 bits in the first byte, long headers only 4
is1RTT bool
2018-11-23 11:04:53 -05:00
}
var _ Opener = &opener{}
2019-01-02 07:01:06 -05:00
func newOpener(aead cipher.AEAD, iv []byte, pnDecrypter cipher.Block, is1RTT bool) Opener {
2018-11-23 11:04:53 -05:00
return &opener{
2019-01-02 07:01:06 -05:00
iv: iv,
aead: aead,
nonceBuf: make([]byte, aead.NonceSize()),
is1RTT: is1RTT,
pnDecrypter: pnDecrypter,
pnMask: make([]byte, pnDecrypter.BlockSize()),
2018-11-23 11:04:53 -05:00
}
}
func (o *opener) Open(dst, src []byte, pn protocol.PacketNumber, ad []byte) ([]byte, error) {
binary.BigEndian.PutUint64(o.nonceBuf[len(o.nonceBuf)-8:], uint64(pn))
2019-01-02 07:01:06 -05:00
for i := 0; i < len(o.nonceBuf); i++ {
o.nonceBuf[i] ^= o.iv[i]
}
opened, err := o.aead.Open(dst, o.nonceBuf, src, ad)
for i := 0; i < len(o.nonceBuf); i++ {
o.nonceBuf[i] = 0
}
return opened, err
}
func (o *opener) DecryptHeader(sample []byte, firstByte *byte, pnBytes []byte) {
if len(sample) != o.pnDecrypter.BlockSize() {
panic("invalid sample size")
}
o.pnDecrypter.Encrypt(o.pnMask, sample)
if o.is1RTT {
*firstByte ^= o.pnMask[0] & 0x1f
} else {
*firstByte ^= o.pnMask[0] & 0xf
}
for i := range pnBytes {
pnBytes[i] ^= o.pnMask[i+1]
}
2018-11-23 11:04:53 -05:00
}