2017-12-12 02:51:45 +00:00
|
|
|
// +build ignore
|
|
|
|
|
|
|
|
package crypto
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/cipher"
|
2018-01-03 19:19:49 +00:00
|
|
|
"encoding/binary"
|
2017-12-12 02:51:45 +00:00
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/aead/chacha20"
|
|
|
|
|
2018-01-03 19:19:49 +00:00
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
2017-12-12 02:51:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type aeadChacha20Poly1305 struct {
|
|
|
|
otherIV []byte
|
|
|
|
myIV []byte
|
|
|
|
encrypter cipher.AEAD
|
|
|
|
decrypter cipher.AEAD
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewAEADChacha20Poly1305 creates a AEAD using chacha20poly1305
|
|
|
|
func NewAEADChacha20Poly1305(otherKey []byte, myKey []byte, otherIV []byte, myIV []byte) (AEAD, error) {
|
|
|
|
if len(myKey) != 32 || len(otherKey) != 32 || len(myIV) != 4 || len(otherIV) != 4 {
|
|
|
|
return nil, errors.New("chacha20poly1305: expected 32-byte keys and 4-byte IVs")
|
|
|
|
}
|
|
|
|
// copy because ChaCha20Poly1305 expects array pointers
|
|
|
|
var MyKey, OtherKey [32]byte
|
|
|
|
copy(MyKey[:], myKey)
|
|
|
|
copy(OtherKey[:], otherKey)
|
|
|
|
|
|
|
|
encrypter, err := chacha20.NewChaCha20Poly1305WithTagSize(&MyKey, 12)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
decrypter, err := chacha20.NewChaCha20Poly1305WithTagSize(&OtherKey, 12)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &aeadChacha20Poly1305{
|
|
|
|
otherIV: otherIV,
|
|
|
|
myIV: myIV,
|
|
|
|
encrypter: encrypter,
|
|
|
|
decrypter: decrypter,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aead *aeadChacha20Poly1305) Open(dst, src []byte, packetNumber protocol.PacketNumber, associatedData []byte) ([]byte, error) {
|
2018-01-03 19:19:49 +00:00
|
|
|
return aead.decrypter.Open(dst, aead.makeNonce(aead.otherIV, packetNumber), src, associatedData)
|
2017-12-12 02:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (aead *aeadChacha20Poly1305) Seal(dst, src []byte, packetNumber protocol.PacketNumber, associatedData []byte) []byte {
|
2018-01-03 19:19:49 +00:00
|
|
|
return aead.encrypter.Seal(dst, aead.makeNonce(aead.myIV, packetNumber), src, associatedData)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (aead *aeadChacha20Poly1305) makeNonce(iv []byte, packetNumber protocol.PacketNumber) []byte {
|
|
|
|
res := make([]byte, 12)
|
|
|
|
copy(res[0:4], iv)
|
|
|
|
binary.LittleEndian.PutUint64(res[4:12], uint64(packetNumber))
|
|
|
|
return res
|
2017-12-12 02:51:45 +00:00
|
|
|
}
|