This source file includes following definitions.
- aead
#include "net/quic/crypto/crypto_handshake.h"
#include "net/quic/crypto/common_cert_set.h"
#include "net/quic/crypto/key_exchange.h"
#include "net/quic/crypto/quic_decrypter.h"
#include "net/quic/crypto/quic_encrypter.h"
namespace net {
QuicCryptoNegotiatedParameters::QuicCryptoNegotiatedParameters()
: key_exchange(0),
aead(0) {
}
QuicCryptoNegotiatedParameters::~QuicCryptoNegotiatedParameters() {}
CrypterPair::CrypterPair() {}
CrypterPair::~CrypterPair() {}
const char QuicCryptoConfig::kInitialLabel[] = "QUIC key expansion";
const char QuicCryptoConfig::kCETVLabel[] = "QUIC CETV block";
const char QuicCryptoConfig::kForwardSecureLabel[] =
"QUIC forward secure key expansion";
QuicCryptoConfig::QuicCryptoConfig()
: common_cert_sets(CommonCertSets::GetInstanceQUIC()) {
}
QuicCryptoConfig::~QuicCryptoConfig() {}
}