qtls_go118.go 290 B

12345678910111213141516
  1. package quic
  2. import (
  3. "crypto/cipher"
  4. "github.com/quic-go/qtls-go1-20"
  5. )
  6. type (
  7. // A CipherSuiteTLS13 is a cipher suite for TLS 1.3
  8. CipherSuiteTLS13 = qtls.CipherSuiteTLS13
  9. )
  10. func AEADAESGCMTLS13(key, fixedNonce []byte) cipher.AEAD {
  11. return qtls.AEADAESGCMTLS13(key, fixedNonce)
  12. }